Skip to main content
summaryrefslogtreecommitdiffstats
blob: 593d08b62dc65004da2dfc7c62faa99198a91cc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.core.tests.compiler.parser;

import java.util.Hashtable;
import java.util.Map;

import org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;

public class ParserTest extends AbstractRegressionTest {
static {
//		TESTS_NAMES = new String[] { "test000" };
//		TESTS_NUMBERS = new int[] { 18 };
//		TESTS_RANGE = new int[] { 11, -1 };
}
public ParserTest(String name) {
	super(name);
}
public void test001() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo(){\n" +
			"		throws\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"throws\", delete this token\n" +
		"----------\n"
	);
}
public void test002() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo(){\n" +
			"		throws new\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws new\n" +
		"	^^^^^^^^^^\n" +
		"Syntax error on tokens, delete these tokens\n" +
		"----------\n"
	);
}
public void test003() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo(){\n" +
			"		throws new X\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws new X\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"throws\", throw expected\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 3)\n" +
		"	throws new X\n" +
		"	           ^\n" +
		"Syntax error, unexpected end of method\n" +
		"----------\n"
	);
}
public void test004() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	{\n" +
			"		throws\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"throws\", delete this token\n" +
		"----------\n"
	);
}
public void test005() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	{\n" +
			"		throws new\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws new\n" +
		"	^^^^^^^^^^\n" +
		"Syntax error on tokens, delete these tokens\n" +
		"----------\n"
	);
}
public void test006() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	{\n" +
			"		throws new X\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws new X\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"throws\", throw expected\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 3)\n" +
		"	throws new X\n" +
		"	           ^\n" +
		"Syntax error, unexpected end of initializer\n" +
		"----------\n"
	);
}
public void test007() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo()throw {\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 1)\n" +
		"	public class X {\n" +
		"	               ^\n" +
		"Syntax error, insert \"}\" to complete ClassBody\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 2)\n" +
		"	void foo()throw {\n" +
		"	          ^^^^^\n" +
		"Syntax error on token \"throw\", { expected\n" +
		"----------\n"
	);
}
public void test008() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo()throw E {\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 1)\n" +
		"	public class X {\n" +
		"	               ^\n" +
		"Syntax error, insert \"}\" to complete ClassBody\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 2)\n" +
		"	void foo()throw E {\n" +
		"	          ^^^^^\n" +
		"Syntax error on token \"throw\", throws expected\n" +
		"----------\n" +
		"3. ERROR in X.java (at line 4)\n" +
		"	}\n" +
		"	^\n" +
		"Syntax error on token \"}\", delete this token\n" +
		"----------\n"
	);
}
public void test009() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo(){\n" +
			"		throws e\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws e\n" +
		"	^^^^^^^^\n" +
		"Syntax error on tokens, delete these tokens\n" +
		"----------\n"
	);
}
public void test010() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo(){\n" +
			"		throws e;\n" +
			"	}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	throws e;\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"throws\", throw expected\n" +
		"----------\n"
	);
}
public void test011() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public void foo(X, Object o, String s) {\n" +
			"	}\n" +
			"   public void bar(){}\n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	public void foo(X, Object o, String s) {\n" +
		"	                 ^\n" +
		"Syntax error on token \",\", . expected\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40681
 */
public void test012() {
	Hashtable nls = new Hashtable();
	nls.put(CompilerOptions.OPTION_ReportNonExternalizedStringLiteral, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public void foo() {\n" +
			"		\"foo\".equals(\"bar\");\n" +
			"		;\n" +
			"	}\n" +
			"}\n"
		},
		null, nls,
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	\"foo\".equals(\"bar\");\n" +
		"	^^^^^\n" +
		"Non-externalized string literal; it should be followed by //$NON-NLS-<n>$\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 3)\n" +
		"	\"foo\".equals(\"bar\");\n" +
		"	             ^^^^^\n" +
		"Non-externalized string literal; it should be followed by //$NON-NLS-<n>$\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40681
 */
public void test013() {
	Hashtable nls = new Hashtable();
	nls.put(CompilerOptions.OPTION_ReportNonExternalizedStringLiteral, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public void foo() {\n" +
			"		\"foo\".equals(\"bar\");\n" +
			"		//;\n" +
			"	}\n" +
			"}\n"
		},
		null, nls,
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	\"foo\".equals(\"bar\");\n" +
		"	^^^^^\n" +
		"Non-externalized string literal; it should be followed by //$NON-NLS-<n>$\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 3)\n" +
		"	\"foo\".equals(\"bar\");\n" +
		"	             ^^^^^\n" +
		"Non-externalized string literal; it should be followed by //$NON-NLS-<n>$\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=47227
 */
public void test014() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public void foo() { \n" +
			"		import java.lang.*;\n" +
			"	} \n" +
			"}\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	import java.lang.*;\n" +
		"	^^^^^^\n" +
		"Syntax error on token \"import\", delete this token\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 3)\n" +
		"	import java.lang.*;\n" +
		"	^^^^^^^^^^^^^^^^^\n" +
		"Syntax error on token(s), misplaced construct(s)\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60848
 */
public void test015() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"// some code\n" +
			"}\n" +
			"/*\n" +
			"// some comments\n"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 4)\n" +
		"	/*\n" +
		"// some comments\n" +
		"\n" +
		"	^^^^^^^^^^^^^^^^^^^^\n" +
		"Unexpected end of comment\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60848
 */
public void test016() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	String s = \""
		},
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	String s = \"\n" +
		"	           ^\n" +
		"String literal is not properly closed by a double-quote\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60848
 */
public void test017() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	char c = '"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	char c = \'\n" +
		"	         ^\n" +
		"Invalid character constant\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60848
 */
public void test018() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	char c = '\\u0"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	char c = \'\\u0\n" +
		"	          ^^^\n" +
		"Invalid unicode\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=12287
 */
public void test019() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public void doit() {\n" +
			"		int[] foo = null;\n" +
			"		foo[0] = \n" +
			"	}\n" +
			"}"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 4)\n" +
		"	foo[0] = \n" +
		"	     ^\n" +
		"Syntax error, insert \"AssignmentOperator Expression\" to complete Assignment\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 4)\n" +
		"	foo[0] = \n" +
		"	     ^\n" +
		"Syntax error, insert \";\" to complete Statement\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=38895
 */
public void test020() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public static void main(String[] args) {\n" +
			"	}\n" +
			"	public static int newLibraryEntry() {\n" +

			"		if (sourceAttachmentPath != null) {\n" +
			"			if (sourceAttachmentPath.isEmpty()) { && !\n" +
			"sourceAttachmentPath.isAbsolute()) {\n" +
			"			foo();\n" +
			"		}\n" +
			"		return null;\n" +
			"	}\n" +
			"	}\n" +
			"	public void foo() {\n" +
			"	}\n" +
			"	public void bar() {\n" +
			"	}\n" +
			"}"
		},
		"----------\n" +
		"1. ERROR in X.java (at line 6)\n" +
		"	if (sourceAttachmentPath.isEmpty()) { && !\n" +
		"	                                      ^^\n" +
		"Syntax error on token \"&&\", invalid (\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 7)\n" +
		"	sourceAttachmentPath.isAbsolute()) {\n" +
		"	                                   ^\n" +
		"Syntax error on token \"{\", invalid AssignmentOperator\n" +
		"----------\n"
	);
}
public void test021() {
	StringBuffer buffer = new StringBuffer();
	buffer.append("public class X {\n");
	for (int i = 0; i < 1000; i++) {
		buffer.append("\tint field_" + i + " = 0; \n");
	}
	for (int i = 0; i < 1000; i++) {
		if (i == 0)
			buffer.append("\tvoid method_" + i + "() { /* default */ } \n");
		else
			buffer.append("\tvoid method_" + i + "() { method_" + (i - 1) + "() \n");
	}
	buffer.append("}\n");

	Hashtable options = new Hashtable();
	options.put(CompilerOptions.OPTION_MaxProblemPerUnit, "10");
	this.runNegativeTest(
		new String[] {
			"X.java",
			buffer.toString()
		},
		"----------\n" +
		"1. ERROR in X.java (at line 1003)\n" +
		"	void method_1() { method_0() \n" +
		"	                           ^\n" +
		"Syntax error, insert \"}\" to complete MethodBody\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 1003)\n" +
		"	void method_1() { method_0() \n" +
		"	                           ^\n" +
		"Syntax error, insert \";\" to complete BlockStatements\n" +
		"----------\n" +
		"3. ERROR in X.java (at line 1004)\n" +
		"	void method_2() { method_1() \n" +
		"	                           ^\n" +
		"Syntax error, insert \"}\" to complete MethodBody\n" +
		"----------\n" +
		"4. ERROR in X.java (at line 1004)\n" +
		"	void method_2() { method_1() \n" +
		"	                           ^\n" +
		"Syntax error, insert \";\" to complete BlockStatements\n" +
		"----------\n" +
		"5. ERROR in X.java (at line 1005)\n" +
		"	void method_3() { method_2() \n" +
		"	                           ^\n" +
		"Syntax error, insert \"}\" to complete MethodBody\n" +
		"----------\n" +
		"6. ERROR in X.java (at line 1005)\n" +
		"	void method_3() { method_2() \n" +
		"	                           ^\n" +
		"Syntax error, insert \";\" to complete BlockStatements\n" +
		"----------\n" +
		"7. ERROR in X.java (at line 1006)\n" +
		"	void method_4() { method_3() \n" +
		"	                           ^\n" +
		"Syntax error, insert \"}\" to complete MethodBody\n" +
		"----------\n" +
		"8. ERROR in X.java (at line 1006)\n" +
		"	void method_4() { method_3() \n" +
		"	                           ^\n" +
		"Syntax error, insert \";\" to complete BlockStatements\n" +
		"----------\n" +
		"9. ERROR in X.java (at line 1007)\n" +
		"	void method_5() { method_4() \n" +
		"	                           ^\n" +
		"Syntax error, insert \"}\" to complete MethodBody\n" +
		"----------\n" +
		"10. ERROR in X.java (at line 2002)\n" +
		"	}\n" +
		"	^\n" +
		"Syntax error, insert \"}\" to complete ClassBody\n" +
		"----------\n",
		null, // custom classpath
		true, // flush previous output dir content
		options // custom options
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=156119
 */
public void test022() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportEmptyStatement, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"interface X {\n" +
			"    int f= 1;;\n" +
			"}"
		},
		null, options,
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	int f= 1;;\n" +
		"	         ^\n" +
		"Unnecessary semicolon\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=156119
 */
public void test023() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportEmptyStatement, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"class X {\n" +
			"    int f= 1;;\n" +
			"}"
		},
		null, options,
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	int f= 1;;\n" +
		"	         ^\n" +
		"Unnecessary semicolon\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=156119
 */
public void test024() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportEmptyStatement, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"interface X {\n" +
			"    int f= 1;\\u003B\n" +
			"}"
		},
		null, options,
		"----------\n" +
		"1. ERROR in X.java (at line 2)\n" +
		"	int f= 1;\\u003B\n" +
		"	         ^^^^^^\n" +
		"Unnecessary semicolon\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=160337
 */
public void test025() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportUndocumentedEmptyBlock, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"public class X {\n" +
			"        static class Y {\n" +
			"                public void foo(int i) {}\n" +
			"        }\n" +
			"        static Y FakeInvocationSite = new Y(){\n" +
			"                public void foo(int i) {}\n" +
			"        };\n" +
			"}"
		},
		null, options,
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	public void foo(int i) {}\n" +
		"	                       ^^\n" +
		"Empty block should be documented\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 6)\n" +
		"	public void foo(int i) {}\n" +
		"	                       ^^\n" +
		"Empty block should be documented\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=160337
 */
public void test026() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportUndocumentedEmptyBlock, CompilerOptions.ERROR);
	runNegativeTest(
		true,
		new String[] {
			"X.java",
			"public class X {\n" +
			"        static class Y {\n" +
			"                public void foo(int i) {}\n" +
			"        }\n" +
			"        static Y FakeInvocationSite = new Y(){\n" +
			"                public void foo(int i) {\n" +
			"					class A {\n" +
			"						A() {}\n" +
			"						public void bar() {}\n" +
			"					}\n" +
			"					new A().bar();\n" +
			"				 }\n" +
			"        };\n" +
			"}"
		},
		null, options,
		"----------\n" +
		"1. ERROR in X.java (at line 3)\n" +
		"	public void foo(int i) {}\n" +
		"	                       ^^\n" +
		"Empty block should be documented\n" +
		"----------\n" +
		"2. ERROR in X.java (at line 9)\n" +
		"	public void bar() {}\n" +
		"	                  ^^\n" +
		"Empty block should be documented\n" +
		"----------\n",
		JavacTestOptions.Excuse.EclipseWarningConfiguredAsError);
}

/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=173992
 */
public void test027() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"import java.io.EOFException;\n" +
			"import java.io.FileNotFoundException;\n" +
			"import java.io.IOException;\n" +
			"import org.xml.sax.SAXException;\n" +
			"public class X {\n" +
        		"public void doSomething() throws FileNotFoundException, EOFException, SAXException{\n" +
        		"\n" +
        		"}\n" +
			"public void doSomethingElse() {\n" +
        		"try {\n" +
                	"	doSomething();\n" +
        		"}\n" +
       			" catch ( SAXException exception) {\n" +
			"\n" +
      			"}  \n" +
        		"catch ( FileNotFoundException exception ) {\n" +
			"\n" +
        		"}    \n" +
       			"catch (\n" +
                	"	// working before the slashes\n" +
        		") {\n" +
			"\n" +
        		"} \n" +
        		"} \n" +
        	"}\n"
        	},
		"----------\n" +
		"1. ERROR in X.java (at line 19)\n" +
		"	catch (\n" +
		"	      ^\n" +
		"Syntax error on token \"(\", FormalParameter expected after this token\n" +
		"----------\n"
	);
}
/*
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=239198
 */
public void test028() {
	Map options = getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportNonExternalizedStringLiteral, CompilerOptions.ERROR);
	runNegativeTest(
		new String[] {
			"X.java",
			"class X {\n" +
			"    public static void foo(String param) {\n" +
			"    	String foo= param;\n" +
			"    	Srtring bar = \"\"\"\n" +
			"    }\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	Srtring bar = \"\"\"\n" + 
		"	              ^^\n" + 
		"Non-externalized string literal; it should be followed by //$NON-NLS-<n>$\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 4)\n" + 
		"	Srtring bar = \"\"\"\n" + 
		"	                ^\n" + 
		"String literal is not properly closed by a double-quote\n" + 
		"----------\n",
		null,
		true,
		options);
}
}

Back to the top