aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/test/java/org/aspectj/systemtest/ajc10x/Ajc10xTests.java
blob: 1fb6b704518ff44fa1604391d63854d2f123c9b9 (plain)
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
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
/* *******************************************************************
 * Copyright (c) 2004 IBM Corporation
 * 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 
 * 
 * ******************************************************************/
package org.aspectj.systemtest.ajc10x;

import java.io.File;

import junit.framework.Test;

import org.aspectj.testing.XMLBasedAjcTestCase;

public class Ajc10xTests extends org.aspectj.testing.XMLBasedAjcTestCase {

	public static Test suite() {
		return XMLBasedAjcTestCase.loadSuite(Ajc10xTests.class);
	}

	@Override
	protected File getSpecFile() {
		return getClassResource("ajc10x.xml");
	}

	public void test001() {
		runTest("properly make choice between cast and parenthesis in parser");
	}

	public void test002() {
		runTest("field from implemented interface not found in advice");
	}

	public void test003() {
		runTest("make sure advice affects introduced methods and constructors");
	}

	public void test004() {
		runTest("new around construct");
	}

	public void test005() {
		runTest("aspect redefines a parameter");
	}

	public void test006() {
		runTest("introducing extends and implements");
	}

	public void test007() {
		runTest("(related) aspect on interface");
	}

	public void test008() {
		runTest("advice and package visibility");
	}

	public void test009() {
		runTest("advice and package visibility");
	}

	public void test010() {
		runTest("advice on implied empty constructor");
	}

	public void test011() {
		runTest("advice on * *(..) not mapping to initializers");
	}

	public void test012() {
		runTest("three type declarations in the scope of an advice");
	}

	public void test013() {
		runTest("introduction fails on class with an inner class that extends or implements something");
	}

	public void test014() {
		runTest("checks that methods are introduced on the topmost class implemented");
	}

	public void test015() {
		runTest("a couple different returns from around advice");
	}

	public void test016() {
		runTest("member finally advice paired with signature advice");
	}

	public void test017() {
		runTest("aspect of eachobject(instanceof(Interface))");
	}

	public void test018() {
		runTest("final member initialization broken with JDK before 1.1.8");
	}

	public void test019() {
		runTest("same package and var name clash in preprocessed code when aspectOf is used");
	}

	public void test020() {
		runTest("and PR#201 advice on static methods fails javac compile with this");
	}

	public void test021() {
		runTest("non-static advice on inner class defined inside of method body");
	}

	public void test022() {
		runTest("simple single-threaded eachcflow test (includes aspectOf)");
	}

	public void test023() {
		runTest("bad type resolution when var reassigned in same scope");
	}

	public void test024() {
		runTest("generating the right throws clause for call-site advice (and around)");
	}

	public void test025() {
		runTest("advice on calls to static methods using several syntax");
	}

	public void test026() {
		runTest(", PR#249, PR#250 advice on constructor sites");
	}

	public void test027() {
		runTest("test after throwing advice in several ways");
	}

	public void test028() {
		runTest("fancy name patterns for method names");
	}

	public void test029() {
		runTest("calls: calls(...)");
	}

	public void test030() {
		runTest("throws Exception clause is unnecessarily added to Driver.main method");
	}

	public void test031() {
		runTest("javac fails when this is referenced in the static main method");
	}

	public void test032() {
		runTest("and 276 cast error generated by ajc when type not in signature");
	}

	public void test033() {
		runTest("calls to methods to which we don't have source");
	}

	public void test034() {
		runTest("more aspect inheritance");
	}

	public void test035() {
		runTest("around and calls with both calling and called this params");
	}

	public void test036() {
		runTest("compiler crashes with eachobject and named pointcuts with parameters");
	}

	public void test037() {
		runTest("lookup rules for unqualified pointcut names");
	}

	public void test038() {
		runTest("eachcflow only instantiated if the aspect has some advice in it");
	}

	public void test039() {
		runTest("(DESIGN QUESTION) aspect of eachJVM advising its own initializer");
	}

	public void test040() {
		runTest("after returning advice on calls to constructors");
	}

	public void test041() {
		runTest("Does annotating 'new' with a type work as desired?");
	}

	public void test042() {
		runTest("Referring to inner classes as {super}.{inner} confused ajc.");
	}

	public void test043() {
		runTest("Advice on advice");
	}

	public void test044() {
		runTest("Introductions on other introductions");
	}

	public void test045() {
		runTest("Putting advice on array constructors.");
	}

	public void test046() {
		runTest("call points within block inner classes are doubled");
	}

	public void test047() {
		runTest("Gets and sets with other advice");
	}

	public void test048() {
		runTest("Compiler can compile correct strictfp modifiers");
	}

	public void test049() {
		runTest("basic test of callsto pointcuts");
	}

	public void test050() {
		runTest("package wildcards in packages");
	}

	public void test051() {
		runTest("around advice on calls and receptions with lots of context");
	}

	public void test052() {
		runTest("! modifier and char in pointcut (no longer an error)");
	}

	public void test053() {
		runTest("right number of aspect instances per cflow");
	}

	public void test054() {
		runTest("many this's into around advice on calls");
	}

	public void test055() {
		runTest("Ensures introduction methods can have advice placed on them");
	}

	public void test056() {
		runTest("No boolean appearing in the 'if' clause for around advice with eachJVM()");
	}

	public void test057() {
		runTest("Order of super introductions.");
	}

	public void test058() {
		runTest("Ensuring backdoor methods are produced.");
	}

	public void test059() {
		runTest("no duplicate advice methods in abstract aspects");
	}

	public void test060() {
		runTest("no duplicate advice methods in abstract aspects extended");
	}

	public void test061() {
		runTest("Putting after-constructor advice on the wrong types implementing the same interface.");
	}

	public void test062() {
		runTest("Instantiating non-static inner classes in advice.");
	}

	public void test063() {
		runTest("Referring to pointcut in of clauses");
	}

	public void test064() {
		runTest("Confused referring to instance variables and locals");
	}

	public void test065() {
		runTest("Parsing C+ expressions without parens in super introductions.");
	}

	public void test066() {
		runTest("Introducing methods on classes that implements inner-interfaces with +implements.");
	}

	public void test067() {
		runTest("Methods with the same name are generated when abstract aspects extend another abstract aspect.");
	}

	public void test068() {
		runTest("Making sure final variables stay final.");
	}

	public void test069() {
		runTest("Problem resolving meta-joinpoint names with around advice on methods called from around advice.");
	}

	public void test070() {
		runTest("Make sure that names of lifted local classes are right when referenced in call-site advice");
	}

	public void test071() {
		runTest("matching for throws clause");
	}

	public void test072() {
		runTest("basic test of declare soft");
	}

	public void test073() {
		runTest("advice on calls to constructors of anonymous inners and access to context");
	}

	public void test074() {
		runTest("inner aspects can't access outer pointcuts");
	}

	public void test075() {
		runTest("implements and extends are introduced before methods and fields");
	}

	public void test076() {
		runTest("a static/inner aspect of a inner class of an aspect is pulled to the top level as static");
	}

	public void test077() {
		runTest("Crashes with privileged aspect.");
	}

	public void test078() {
		runTest("join points exist in the execution of field initializers");
	}

	public void test079() {
		try {
			runTest("privileged aspects");
		} finally {
			System.out.println(ajc.getLastCompilationResult().getStandardError());
			System.out.println(ajc.getLastCompilationResult().getStandardOutput());
		}
	}

	public void test080() {
		runTest("advice on field gets in privileged aspects");
	}

	public void test081() {
		runTest("Two anonymous classes in the same scope");
	}

	public void test082() {
		runTest("basic tests for initializer and staticinitializer PCDs");
	}

	public void test083() {
		runTest("introduction of an initializer into a class");
	}

	public void test084() {
		runTest("some method accessibility tests, particularly package-protected and inheritance");
	}

	public void test085() {
		runTest("fairly monotonous (and non-covering) tests for expanded dot patterns");
	}

	public void test086() {
		runTest("field patterns and subtyping");
	}

	public void test087() {
		runTest("Checking formal matching as in Roeder's bug in 0.7b10");
	}

	public void test088() {
		runTest("Introducing synchronized methods on interfaces.");
	}

	public void test089() {
		runTest("The pointcut params (..,int..) is not recognizing (Object,int,Object).");
	}

	public void test090() {
		runTest("calls advice on array objects causes error in code generation");
	}

	public void test091() {
		runTest("join points in field initializers aren't showing up.");
	}

	public void test092() {
		runTest("Handlers problem");
	}

	public void test093() {
		runTest("work nicely with inner class method look-up rules and call-site advice");
	}

	public void test094() {
		runTest("strictfp modifier allowed on advice");
	}

	public void test095() {
		runTest("No argthis was being created for calls advice.");
	}

	public void test096() {
		runTest("Ensuring no advice with instanceof(..) is run on static methods.");
	}

	public void test097() {
		runTest("Null pointer on gets advice showing the case causing the error");
	}

	public void test098() {
		runTest("try to make sure that dynamic JoinPoint objects aren't generated when used inside of if (false) { ... }");
	}

	public void test099() {
		runTest("within and withincode (doesn't all work due to local class name issues)");
	}

	public void test100() {
		runTest("around advice on calls within inner classes (including protected method calls)");
	}

	public void test101() {
		runTest("around advice on calls within inner classes (including protected method calls)");
	}

	public void test102() {
		runTest("Arguments to runNext should be final when needed");
	}

	public void test103() {
		runTest("Method introductions");
	}

	public void test104() {
		runTest("Putting an introduced method on each interface");
	}

	public void test105() {
		runTest("Extending interfaces");
	}

	public void test106() {
		runTest("Introducing private methods on interfaces");
	}

	public void test107() {
		runTest("Issuing errors for assigning variables thisJoinPoint -- not assigning thisJoinPoint.");
	}

	public void test108() {
		runTest("Static references inside of introduced bodies get bound correctly.");
	}

	public void test109() {
		runTest("cflow and object creations [of eachcflow]");
	}

	public void test110() {
		runTest("Doesn't import MightHaveAspect when compiling with more than 1 file. [eachobject]");
	}

	public void test111() {
		runTest("test binding to formals in calls to constructors (binding to null) (eachobject !!! now misnamed)");
	}

	public void test112() {
		runTest("After advice isn't being woven into after throwing advice");
	}

	public void test113() {
		runTest("Throwing an EmptyStackException.");
	}

	public void test114() {
		runTest("check that MightHaveAspect interface is created correctly for an aspect in deep package");
	}

	public void test115() {
		runTest("Defines clfow$ajc0 more once. [eachcflow]");
	}

	public void test116() {
		runTest("Various calls, receptions, and callsto tests [callsto]");
	}

	public void test117() {
		runTest("Was throwing exception, now just an error. [eachobject]");
	}

	public void test118() {
		runTest("different version of aspect inheritance, particularly empty pointcuts and abstract cflows [eachcflow]");
	}

	public void test119() {
		runTest("set advice on member initing throwing exception [eachobject]");
	}

	public void test120() {
		runTest("Testing class names with same name's with difference case as package. [eachobject]");
	}

	public void test121() {
		runTest("Null pointer on gets advice with coverage [painful]");
	}

	public void test122() {
		runTest("Basic test for cflow pointcuts [eachcflow]");
	}

	public void test123() {
		runTest("Crashing when looking up the type of array members.");
	}

	public void test124() {
		runTest("PostfixExprs to various synthetic things are fixed correctly [eachobject]");
	}

	public void test125() {
		runTest("Dave Binkley's problem with eachcflowroot. [eachcflow]");
	}

	public void test126() {
		runTest("advice on an inherited method");
	}

	public void test127() {
		runTest(", PR#115 checks the ordering of catch clauses");
	}

	public void test128() {
		runTest("various declared exception permutations");
	}

	public void test129() {
		runTest("ordering of advice kinds as well as cflow and dominates");
	}

	public void test130() {
		runTest("advice on default constructor for a class only referenced via reflection");
	}

	public void test131() {
		runTest("calling and called this params in calls points");
	}

	public void test132() {
		runTest("primitive parameters coercable to Object just like return values are");
	}

	public void test133() {
		runTest("join points in static/dynamic initializers aren't showing up.");
	}

	public void test134() {
		runTest("Gets and sets on a number of variables (field access ???)");
	}

	public void test135() {
		runTest("Joinpoints are showing up on intermediate call sites");
	}

	public void test136() {
		runTest("Reception based on strictfp modifier");
	}

	public void test137() {
		runTest("Subclasses that do not redefine a method are not being handled correctly");
	}

	public void test138() {
		runTest("making sure that super calls are bound to the right methods");
	}

	public void test139() {
		runTest("inheritance, around advice and abstract pointcuts [eachobject] (still)");
	}

	public void test140() {
		runTest("Priviledged aspect methods are missing for privates. [eachobject]");
	}

	public void test141() {
		runTest("exceptions thrown and caught in advice, particularly try+proceed");
	}

	public void test142() {
		runTest("Not and And operators in pointcuts not working");
	}

	public void test143() {
		runTest("Member initializers should run before the current class constructor");
	}

	public void test144() {
		runTest("Coverage tests for Member initializers should run before the current class constructor and after super");
	}

	public void test145() {
		runTest("thisJoinPoint{Static} not visible in if() pcd of named pointcut");
	}

	public void test146() {
		runTest("pcd if() expression visibility at compile-time  (minimal operation)");
	}

	public void test147() {
		runTest("pcd if() NPE in compiler when unwinding assignment in pcd if(expr)");
	}

	public void test148() {
		runTest("pcd if() dup methods produced when pointcut after advice etc (javac)");
	}

	public void test149() {
		runTest("pcd if() variants: [anonymous, named] x [execution, call, callTyped, get, set, initializations] x [before, after, around]");
	}

	// moved to ajcTestsFailing.xml
	// public void test150(){
	// runTest("advice on advice in usejavac mode");
	// }

	public void test151() {
		runTest("initialization order with this");
	}

	public void test152() {
		runTest("!within and !this handling for callee-side call points");
	}

	public void test153() {
		runTest("private inner interfaces and bytecode visibility");
	}

	public void test154() {
		runTest("elaborated into testing of around on all join points");
	}

	public void test155() {
		runTest("type name hygiene when code comes from aspects in different packages");
	}

	public void test156() {
		runTest("cflowbelow dependencies (from Chris Dutchyn)");
	}

	public void test157() {
		runTest("Compiler incorrectly flagging *1 (non-alphabetic start to signature pattern)");
	}

	public void test158() {
		runTest("Unable to bind privately-introduced field name from introduced method in the same aspect");
	}

	public void test159() {
		runTest("anonymous inner class with aspect");
	}

	public void test160() {
		runTest("Arguments are not being passed in to calls advice");
	}

	public void test161() {
		runTest("interfaces as mixins with introduction");
	}

	public void test161b() {
		runTest("interfaces as mixins with introduction b");
	}

	public void test162() {
		runTest("functional modifiers work correctly with introduced members");
	}

	public void test163() {
		runTest("ExceptionInInitializerError accessing cflow in aspect initialization - before variants");
	}

	public void test164() {
		runTest("NoClassDefFoundError accessing cflow in aspect initialization - after variants");
	}

	public void test165() {
		runTest("InternalCompilerError in JpPlan when args alone");
	}

	public void test166() {
		runTest("compile error using pcd if() with advice on introduced methods.");
	}

	public void test167() {
		runTest("compile errors boolean using cflow and unimplemented method using around advice on methods introduced by interface");
	}

	public void test168() {
		runTest("aspect as member of interface");
	}

	public void test169() {
		runTest("missing method name to synthetic invocation");
	}

	public void test170() {
		runTest("protected subclass impl of superclass method with default access and variants");
	}

	public void test171() {
		runTest("Exception planning advice");
	}

	public void test172() {
		runTest("unreproduced bug with advice - probably UTR");
	}

	public void test173() {
		runTest("introduced inner interfaces accessible inside aspect");
	}

	public void test174() {
		runTest("validate (enclosing) join point and source locations");
	}

	public void test175() {
		runTest("advice formals are just like method formals");
	}

	public void test176() {
		runTest("advice formals produce errors just like method formals");
	}

	public void test177() {
		runTest("advice throws clauses must be compatible with joinpoints they apply to");
	}

	public void test178() {
		runTest("potential method conflicts with introductions and interfaces and PR#561");
	}

	public void test179() {
		runTest("illegal method conflicts with introductions and interfaces and PR#561");
	}

	public void test180() {
		runTest("AspectOf available for different aspect types");
	}

	public void test181() {
		runTest("access to all members of class and inner class from privileged aspect");
	}

	public void test182() {
		runTest("cflow alone with around produces compiler bcg StackOverflowError");
	}

	public void test183() {
		runTest("get/set join points run for complex assignment operators (+=, etc.) (working)");
	}

	public void test184() {
		runTest("this available in introduced field initializers");
	}

	public void test185() {
		runTest("Introduced type unavailable to cast expressions in introduced methods");
	}

	public void test186() {
		runTest("Introduced type unavailable to qualified new expressions in introduced methods");
	}

	public void test187() {
		runTest("Introduced type unavailable to cast expressions in introduced field initializers");
	}

	public void test188() {
		runTest("Aspect type unavailable to qualified new expressions in body of introduced methods");
	}

	public void test189() {
		runTest("Introduced type unavailable to qualified new expressions in introduced field initializers");
	}

	public void test190() {
		runTest("variable slots and finally/catch causing verify errors");
	}

	public void test191() {
		runTest("after advice on static method with pcd if() using result");
	}

	public void test192() {
		runTest("after advice on static method with pcd if() using result through pointcut");
	}

	public void test193() {
		runTest("AbstractMethodError for introduced methods (order 1)");
	}

	public void test194() {
		runTest("AbstractMethodError for introduced methods (order 2)");
	}

	public void test195() {
		runTest("AbstractMethodError for introduced methods (order 3)");
	}

	public void test196() {
		runTest("AbstractMethodError for introduced methods (order 4)");
	}

	public void test197() {
		runTest("AbstractMethodError for introduced methods (order 5)");
	}

	public void test198() {
		runTest("declare error and abstract pointcuts");
	}

	public void test199() {
		runTest("Exercise runtime classes (optionally in 1.1 VM)");
	}

	public void test200() {
		runTest("VerifyError after around advice falls off end of tryCatch");
	}

	public void test201() {
		runTest("Named within pointcuts failing");
	}

	public void test202() {
		runTest("aspect with private abstract pointcut");
	}

	public void test203() {
		runTest("concrete aspect unable to access abstract package-private pointcut in parent for overriding");
	}

	public void test204() {
		runTest("inner, outer, and outside-package subaspects of an aspect with abstract protected-, public-, and default-access pointcuts");
	}

	public void test205() {
		runTest("inner subaspects of an aspect with private pointcut");
	}

	public void test206() {
		runTest("outer subaspects of an aspect with private pointcut");
	}

	public void test207() {
		runTest("abstract aspect used statically should not cause instantiation of advice or pointcut");
	}

	public void test208() {
		runTest("private inner interface accessible in scope when declared on outer class");
	}

	public void test209() {
		runTest("accessing protected superclass members in and outside CCC from body of method introduction");
	}

	public void test210() {
		runTest("accessing private superclass members from body of method introduction");
	}

	public void test211() {
		runTest("simple test for around and casting");
	}

	public void test212() {
		runTest("aroundInner 1 - around advice inner Thread subclass running proceed but not writing field");
	}

	public void test213() {
		runTest("aroundInner 2 - around advice inner Runnable running proceed and writing method-final proxy");
	}

	public void test214() {
		runTest("aroundInner 3 - around advice inner class running proceed and writing field");
	}

	public void test215() {
		runTest("aroundInner 4 - around advice inner Thread subclass running proceed and writing field");
	}

	public void test216() {
		runTest("aroundInner 5 - around advice inner Runnable (subinterface) running proceed and writing field introduced on subinterface");
	}

	public void test217() {
		runTest("Named local class closing over proceed invocation");
	}

	public void test218() {
		runTest("beautiful recursive computation of factorial with around is now supported");
	}

	public void test219() {
		runTest("multi-dispatch not used for named pcd references");
	}

	public void test220() {
		runTest("multi-dispatch implemented through around + args");
	}

	public void test221() {
		runTest("unrecognized aspect should not net Cloneable and Serializable warnings");
	}

	public void test222() {
		// FIXME AV - infinite loop on JRockit in m5 advice - don't know why
		runTest("unreachable code generated by around advice on the execution of void methods");
	}

	public void test223() {
		runTest("Overriding method implementations using introduction on interfaces");
	}

	public void test224() {
		runTest("more coverage for around and concrete methods on interfaces");
	}

	public void test225() {
		runTest("invalid number and type of proceed arguments");
	}

	public void test226() {
		runTest("after returning advice order");
	}

	public void test227() {
		runTest("after returning advice param");
	}

	public void test228() {
		runTest("! and declaring types with callee-side call join points");
	}

	public void test229() {
		runTest(". Binding the wrong arguments in withincode(..).");
	}

	public void test230() {
		runTest(". Matching arguments in cflow correctly.");
	}

	public void test231() {
		runTest(". Binding variables with numbers in their name with pertarget(..)'s.");
	}

	public void test232() {
		runTest("second arg in formal on shared joinpoint with pcd if() causes verify error ??");
	}

	public void test233() {
		runTest("access to private members from privileged aspect");
	}

	public void test234() {
		runTest("inner classes of privileged aspects cannot see target class private members");
	}

	public void test235() {
		runTest("aspects should get package access outside the file");
	}

	public void test236() {
		runTest("subclass advice not run for join points selected by superclass cflow-based pointcuts");
	}

	public void test237() {
		runTest("more issues with abstract aspects and cflow pointcuts");
	}

	public void test238() {
		runTest("compile fails for aspect derived from percflow base aspect unless pointcut excludes base aspect and subaspects");
	}

	public void test239() {
		runTest("pertarget stack overflow getting name of anonymous (Interface) class");
	}

	public void test240() {
		runTest("pertarget stack overflow getting name of anonymous (Object) class");
	}

	public void test241() {
		runTest("pertarget runtime stack overflow (getting name of anonymous (Object) class?)");
	}

	public void test242() {
		runTest("subaspect method declaration on superaspect inner interface (names)");
	}

	public void test243() {
		runTest("subaspect method declaration on superaspect inner interface (access)");
	}

	public void test244() {
		runTest("subaspect method declaration on superaspect inner interface (types)");
	}

	public void test245() {
		runTest("around AST type XXX");
	}

	public void test246() {
		runTest("around all execution with double assignment in initializer (simple)");
	}

	public void test247() {
		runTest("around all execution with double assignment in initializer (coverage)");
	}

	public void test248() {
		runTest("changing this in around's proceed reported by Rich Price");
	}

	public void test249() {
		runTest("default package for aspect introductions is not the current package");
	}

	public void test250() {
		runTest("anon class written to wrong directory");
	}

	public void test251() {
		runTest("unqualified transitive pointcut references not resolved");
	}

	public void test252() {
		runTest("unqualified transitive pointcut references not resolved - 2");
	}

	public void test253() {
		runTest("direct use outside aspect of defined abstract pointcut");
	}

	public void test254() {
		runTest("direct use outside aspect of undefined abstract pointcut");
	}

	public void test255() {
		runTest("indirect use outside aspect of undefined abstract pointcut");
	}

	public void test256() {
		runTest("simple call join point tests for JoinPoint SourceLocation context");
	}

	public void test257() {
		runTest("!target with second advice on casted call");
	}

	public void test258() {
		runTest("name binding in around cflow");
	}

	public void test259() {
		runTest("name binding in around cflow - 2");
	}

	public void test260() {
		runTest("around name-binding in cflows using factorial");
	}

	public void test261() {
		runTest("replacing this or target in around advice");
	}

	public void test262() {
		runTest("after returning from initialization and after executing constructor");
	}

	public void test263() {
		runTest("after returning from initialization causes ExceptionInInitializer in aspect");
	}

	public void test264() {
		runTest("name binding in before cflow containing cflowbelow");
	}

	public void test265() {
		runTest("file order in type searching");
	}

	public void test266() {
		runTest("simple declare warning (NPE)");
	}

	public void test267() {
		runTest("ajc dies on cflow into field init anon class see knownbugs.txt");
	}

	public void test268() {
		runTest("Incrementing interface-introduced field");
	}

	public void test269() {
		runTest("The dynamic type, not the static one, should be used in if pcds");
	}

	public void test270() {
		runTest("bad interaction with after returning, around and void methods (from Rich Price)");
	}

	public void test271() {
		runTest("type pattern matching for inner classes (from Ken Horn)");
	}

	public void test272() {
		runTest("static initializer member name");
	}

	public void test273() {
		runTest("cflow pcd syntax error");
	}

	public void test274() {
		runTest("binding args with indeterminate prefix and suffix");
	}

	public void test275() {
		runTest("check arg types with indeterminate prefix and suffix");
	}

	public void test276() {
		runTest("testing and binding args with single indeterminate prefix and suffix");
	}

	public void test277() {
		runTest("binding handler args with indeterminate prefix and suffix");
	}

	public void test278() {
		runTest("Compiling java.lang.Object with ajc yields non-verifying bytecode");
	}

	public void test279() {
		runTest("method-local class defined in around return statement");
	}

	public void test280() {
		runTest("CE expected for assignment to arg in if pcd");
	}

	public void test281() {
		runTest("advising field get/sets when accessing via super");
	}

	public void test282() {
		runTest("accessing private members in outer types");
	}

	public void test283() {
		runTest("can't apply around advice to the execution of around advice");
	}

	public void test284() {
		runTest("incompatible advice throws clause are a compile-time error");
	}

}