@@ -200,8 +200,6 @@ public void tearDown() throws Exception {
200
200
* Tests the appearance of marker changes in the resource delta.
201
201
*/
202
202
public void testMarkerChangesInDelta3 () throws CoreException {
203
- debug ("TestMarkerChangesInDelta3" );
204
-
205
203
// Create and register a listener.
206
204
final MarkersChangeListener listener = new MarkersChangeListener ();
207
205
setResourceChangeListener (listener );
@@ -245,12 +243,9 @@ public void testMarkerChangesInDelta3() throws CoreException {
245
243
* Tests whether markers correctly copy with resources.
246
244
*/
247
245
public void testCopyResource () {
248
- debug ("TestCopyResource" );
249
246
}
250
247
251
248
public void testCreateMarker () throws CoreException {
252
- debug ("TestCreateMarker" );
253
-
254
249
// create markers on our hierarchy of resources
255
250
for (IResource resource : resources ) {
256
251
// Create and register a listener.
@@ -352,7 +347,6 @@ public void testCreationTime() throws CoreException {
352
347
}
353
348
354
349
public void testDeleteMarker () throws CoreException {
355
- debug ("TestDeleteMarker" );
356
350
IMarker marker = null ;
357
351
358
352
// Create and register a listener.
@@ -395,7 +389,6 @@ public void testDeleteMarker() throws CoreException {
395
389
}
396
390
397
391
public void testDeleteMarkers () throws CoreException {
398
- debug ("TestDeleteMarkers" );
399
392
IMarker [] markers = createMarkers (resources , IMarker .PROBLEM );
400
393
401
394
// Check that a collection of markers can be removed.
@@ -407,8 +400,6 @@ public void testDeleteMarkers() throws CoreException {
407
400
}
408
401
409
402
public void testFindMarkers () throws CoreException {
410
- debug ("TestFindMarkers" );
411
-
412
403
// test finding some markers which actually exist
413
404
IMarker [] markers = createMarkers (resources , IMarker .PROBLEM );
414
405
IMarker [] found = getWorkspace ().getRoot ().findMarkers (IMarker .PROBLEM , false , IResource .DEPTH_INFINITE );
@@ -451,8 +442,6 @@ public void test_35300() throws CoreException {
451
442
}
452
443
453
444
public void test_10989 () throws CoreException {
454
- debug ("test_10989" );
455
-
456
445
IProject project = getWorkspace ().getRoot ().getProject ("MyProject" );
457
446
create (project , false );
458
447
IFile file = project .getFile ("foo.txt" );
@@ -469,8 +458,6 @@ public void test_10989() throws CoreException {
469
458
* Bug 289811 - ArrayIndexOutOfBoundsException in MarkerAttributeMap
470
459
*/
471
460
public void test_289811 () throws CoreException {
472
- debug ("test_289811" );
473
-
474
461
String testValue = getRandomString ();
475
462
IProject project = getWorkspace ().getRoot ().getProject (getUniqueString ());
476
463
project .create (null );
@@ -593,8 +580,6 @@ public void testIsSubTypeOf() throws CoreException {
593
580
* Tests the appearance of marker changes in the resource delta.
594
581
*/
595
582
public void testMarkerChangesInDelta () throws CoreException {
596
- debug ("TestMarkerChangesInDelta" );
597
-
598
583
// Create and register a listener.
599
584
MarkersChangeListener listener = new MarkersChangeListener ();
600
585
setResourceChangeListener (listener );
@@ -674,8 +659,6 @@ public void testMarkerChangesInDelta() throws CoreException {
674
659
* state of the marker before the change occurred.
675
660
*/
676
661
public void testMarkerDeltaAttributes () throws CoreException {
677
- debug ("testMarkerDeltaAttributes" );
678
-
679
662
// create markers on various resources
680
663
final IMarker [] markers = new IMarker [3 ];
681
664
IWorkspaceRunnable body = monitor -> {
@@ -743,8 +726,6 @@ public void testMarkerDeltaAttributes() throws CoreException {
743
726
* Tests the appearance of marker changes in the resource delta.
744
727
*/
745
728
public void testMarkerDeltasCopyResource () throws CoreException {
746
- debug ("testMarkerDeltasCopyResource" );
747
-
748
729
// Create and register a listener.
749
730
final MarkersChangeListener listener = new MarkersChangeListener ();
750
731
setResourceChangeListener (listener );
@@ -785,8 +766,6 @@ public void testMarkerDeltasCopyResource() throws CoreException {
785
766
* Tests the appearance of marker changes in the resource delta.
786
767
*/
787
768
public void testMarkerDeltasMerge () throws CoreException {
788
- debug ("testMarkerDeltasMerge" );
789
-
790
769
// Create and register a listener.
791
770
final MarkersChangeListener listener = new MarkersChangeListener ();
792
771
setResourceChangeListener (listener );
@@ -882,8 +861,6 @@ public void testMarkerDeltasMerge() throws CoreException {
882
861
* Tests the appearance of marker changes in the resource delta.
883
862
*/
884
863
public void testMarkerDeltasMoveFolder () throws CoreException {
885
- debug ("testMarkerDeltasMoveFolder" );
886
-
887
864
IWorkspaceRoot root = getWorkspace ().getRoot ();
888
865
final IProject project = root .getProject ("MyProject" );
889
866
IFolder folder = project .getFolder ("folder" );
@@ -923,7 +900,6 @@ public void testMarkerDeltasMoveFolder() throws CoreException {
923
900
* Tests the appearance of marker changes in the resource delta.
924
901
*/
925
902
public void testMarkerDeltasMoveFile () throws CoreException {
926
- debug ("testMarkerDeltasMoveFile" );
927
903
IWorkspaceRoot root = getWorkspace ().getRoot ();
928
904
final IProject project = root .getProject ("MyProject" );
929
905
IFolder folder = project .getFolder ("folder" );
@@ -963,8 +939,6 @@ public void testMarkerDeltasMoveFile() throws CoreException {
963
939
* Tests the appearance of marker changes in the resource delta.
964
940
*/
965
941
public void testMarkerDeltasMoveProject () throws CoreException {
966
- debug ("testMarkerDeltasMoveProject" );
967
-
968
942
// Create and register a listener.
969
943
final MarkersChangeListener listener = new MarkersChangeListener ();
970
944
setResourceChangeListener (listener );
@@ -1017,8 +991,6 @@ public void testMarkerDeltasMoveProject() throws CoreException {
1017
991
}
1018
992
1019
993
public void testMarkerSave () throws Exception {
1020
- debug ("TestMarkerSave" );
1021
-
1022
994
IMarker [] newMarkers = createMarkers (resources , IMarker .PROBLEM );
1023
995
IMarker [] expected = new IMarker [newMarkers .length * 3 ];
1024
996
System .arraycopy (newMarkers , 0 , expected , 0 , newMarkers .length );
@@ -1091,8 +1063,6 @@ public String requestName() {
1091
1063
}
1092
1064
1093
1065
public void testMarkerSaveTransient () throws Exception {
1094
- debug ("TestMarkerSaveTransient" );
1095
-
1096
1066
// create the markers on the resources. create both transient
1097
1067
// and persistent markers.
1098
1068
final ArrayList <IMarker > persistentMarkers = new ArrayList <>();
@@ -1184,15 +1154,12 @@ public String requestName() {
1184
1154
* Tests whether markers correctly move with resources.
1185
1155
*/
1186
1156
public void testMoveResource () {
1187
- debug ("TestMoveResource" );
1188
1157
}
1189
1158
1190
1159
/*
1191
1160
* Test for PR: "1FWT3V5: ITPCORE:WINNT - Task view shows entries for closed projects"
1192
1161
*/
1193
1162
public void testProjectCloseOpen () throws CoreException {
1194
- debug ("testProjectCloseOpen" );
1195
-
1196
1163
// create a marker on the project
1197
1164
IProject project = getWorkspace ().getRoot ().getProjects ()[0 ];
1198
1165
IMarker marker = project .createMarker (IMarker .BOOKMARK );
@@ -1206,8 +1173,6 @@ public void testProjectCloseOpen() throws CoreException {
1206
1173
}
1207
1174
1208
1175
public void testSetGetAttribute () throws CoreException {
1209
- debug ("testSetGetAttribute" );
1210
-
1211
1176
for (IResource resource : resources ) {
1212
1177
String resourcePath = resource .getFullPath ().toString ();
1213
1178
@@ -1276,8 +1241,6 @@ public void testGetAttributesEquality() throws Exception {
1276
1241
}
1277
1242
1278
1243
public void testSetGetAttribute2 () throws CoreException {
1279
- debug ("testSetGetAttribute2" );
1280
-
1281
1244
for (IResource resource : resources ) {
1282
1245
String resourcePath = resource .getFullPath ().toString ();
1283
1246
0 commit comments