Skip to main content
summaryrefslogtreecommitdiffstats
blob: 863910ca2cf4b5f83bddf869483254a6340b5f79 (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
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
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
/**********************************************************************
 * This file is part of "Object Teams Development Tooling"-Software
 * 
 * Copyright 2010 Stephan Herrmann
 * 
 * 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
 * $Id$
 * 
 * Please visit http://www.eclipse.org/objectteams for updates and contact.
 * 
 * Contributors:
 * 	  Stephan Herrmann - Initial API and implementation
 **********************************************************************/
package org.eclipse.objectteams.otdt.tests.otjld.rolesandteams;

import org.eclipse.objectteams.otdt.tests.otjld.AbstractOTJLDTest;

import junit.framework.Test;

public class ImplicitInheritance extends AbstractOTJLDTest {
	
	public ImplicitInheritance(String name) {
		super(name);
	}
	
	// Static initializer to specify tests subset using TESTS_* static variables
	// All specified tests which does not belong to the class are skipped...
	static {
//		TESTS_NAMES = new String[] { "test0c15_overrideBoundSuperRole"};
//		TESTS_NUMBERS = new int[] { 1459 };
//		TESTS_RANGE = new int[] { 1097, -1 };
	}
	
	public static Test suite() {
		return buildComparableTestSuite(testClass());
	}

	public static Class testClass() {
		return ImplicitInheritance.class;
	}

    // implicit sub-role overrides method with role signature
    // 0.c.1-otjld-implicit-overrides-1
    public void test0c1_implicitOverrides1() {
       
       runConformTest(
            new String[] {
		"T0c112.java",
			    "\n" +
			    "public team class T0c112 extends T0c111 {\n" +
			    "	public class R {\n" +
			    "		protected String value(R other) {\n" +
			    "			return \"OK\";\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public T0c112 () {\n" +
			    "		R r = new R();\n" +
			    "		System.out.print(r.value(new R()));\n" +
			    "	}\n" +
			    "	public static void main (String[] args) {\n" +
			    "		new T0c112();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"T0c111.java",
			    "\n" +
			    "public team class T0c111 {\n" +
			    "	public class R {\n" +
			    "		protected String value(R other) {\n" +
			    "			return \"NOTOK\";\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a constructor with self call is copied as tsuper, adjustment required
    // 0.c.2-otjld-tsuper-in-constructor-1
    public void test0c2_tsuperInConstructor1() {
       
       runConformTest(
            new String[] {
		"Team0c2tic1_2.java",
			    "\n" +
			    "public team class Team0c2tic1_2 extends Team0c2tic1_1 {\n" +
			    "	protected class R {\n" +
			    "		protected R () {\n" +
			    "			tsuper();\n" +
			    "			val = val.toUpperCase();\n" +
			    "		}\n" +
			    "		R(String v) {\n" +
			    "			val = \"NOK\";\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c2tic1_2 () {\n" +
			    "		R r = new R();\n" +
			    "		System.out.print(r.getVal());\n" +
			    "	}\n" +
			    "	public static void main (String[] args) {\n" +
			    "		new Team0c2tic1_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c2tic1_1.java",
			    "\n" +
			    "public team class Team0c2tic1_1 {\n" +
			    "	protected class R {\n" +
			    "		String val;\n" +
			    "		R () {\n" +
			    "			this(\"o\");\n" +
			    "		}\n" +
			    "		R (String v) {\n" +
			    "			val = v+\"k\";\n" +
			    "		}\n" +
			    "                protected String getVal() { return val; }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a constructor with self call is copied as tsuper, ctor called in self call not overridden
    // 0.c.2-otjld-tsuper-in-constructor-2
    public void test0c2_tsuperInConstructor2() {
       
       runConformTest(
            new String[] {
		"Team0c2tic2_2.java",
			    "\n" +
			    "public team class Team0c2tic2_2 extends Team0c2tic2_1 {\n" +
			    "	protected class R {\n" +
			    "		protected R () {\n" +
			    "			tsuper();\n" +
			    "			val = val.toUpperCase();\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c2tic2_2 () {\n" +
			    "		R r = new R();\n" +
			    "		System.out.print(r.getVal());\n" +
			    "	}\n" +
			    "	public static void main (String[] args) {\n" +
			    "		new Team0c2tic2_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c2tic2_1.java",
			    "\n" +
			    "public team class Team0c2tic2_1 {\n" +
			    "	protected class R {\n" +
			    "		String val;\n" +
			    "		protected R () {\n" +
			    "			this(\"o\");\n" +
			    "		}\n" +
			    "		R (String v) {\n" +
			    "			val = v+\"k\";\n" +
			    "		}\n" +
			    "                public String getVal() { return val; }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a team overrides a method returning role
    // 0.c.3-otjld-override-method-with-roletype-1
    public void test0c3_overrideMethodWithRoletype1() {
       
       runConformTest(
            new String[] {
		"T0c3omwr1Main.java",
			    "\n" +
			    "public class T0c3omwr1Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		final Team0c3omwr1_1 t = new Team0c3omwr1_2();\n" +
			    "		Role<@t> r = t.getR();\n" +
			    "		System.out.print(r.getValue());\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr1_1.java",
			    "\n" +
			    "public team class Team0c3omwr1_1 {\n" +
			    "	public class Role {\n" +
			    "		String val;\n" +
			    "		public Role(String v) {\n" +
			    "			val = v;\n" +
			    "		}\n" +
			    "		public String getValue() { return val+\"O\"; }\n" +
			    "	}\n" +
			    "	public Role getR () {\n" +
			    "		return new Role(\"N\");\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr1_2.java",
			    "\n" +
			    "public team class Team0c3omwr1_2 extends Team0c3omwr1_1 {\n" +
			    "	public class Role {\n" +
			    "		public String getValue() { return val+\"K\"; }\n" +
			    "	}\n" +
			    "	public Role getR() {\n" +
			    "		return new Role(\"O\");\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a team overrides a method returning role using super
    // 0.c.3-otjld-override-method-with-roletype-2
    public void test0c3_overrideMethodWithRoletype2() {
       
       runConformTest(
            new String[] {
		"T0c3omwr2Main.java",
			    "\n" +
			    "public class T0c3omwr2Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		final Team0c3omwr2_1 t = new Team0c3omwr2_2();\n" +
			    "		Role<@t> r = t.getR(\"X\");\n" +
			    "		System.out.print(r.getValue());\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr2_1.java",
			    "\n" +
			    "public team class Team0c3omwr2_1 {\n" +
			    "	public class Role {\n" +
			    "		String val;\n" +
			    "		public Role(String v) {\n" +
			    "			val = v;\n" +
			    "		}\n" +
			    "		public String getValue() { return val+\"O\"; }\n" +
			    "	}\n" +
			    "	public Role getR (String v) {\n" +
			    "		return new Role(v);\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr2_2.java",
			    "\n" +
			    "public team class Team0c3omwr2_2 extends Team0c3omwr2_1 {\n" +
			    "	public class Role {\n" +
			    "		public String getValue() { return val+\"K\"; }\n" +
			    "	}\n" +
			    "	public Role getR(String v) {\n" +
			    "		return super.getR(\"O\");\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a role overrides an implicitly inherited method return a role type
    // 0.c.3-otjld-override-method-with-roletype-3
    public void test0c3_overrideMethodWithRoletype3() {
       
       runConformTest(
            new String[] {
		"T0c3omwr3Main.java",
			    "\n" +
			    "public class T0c3omwr3Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c3omwr3_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr3_1.java",
			    "\n" +
			    "public team class Team0c3omwr3_1 {\n" +
			    "	public class Role {\n" +
			    "		public Role getR() {\n" +
			    "			return this;\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c3omwr3_2.java",
			    "\n" +
			    "public team class Team0c3omwr3_2 extends Team0c3omwr3_1 {\n" +
			    "	private Role r = new Role(\"OK\");\n" +
			    "	public class Role {\n" +
			    "		String val;\n" +
			    "		public Role(String v) { val = v; }\n" +
			    "		public Role getR() {\n" +
			    "			return Team0c3omwr3_2.this.r;\n" +
			    "		}\n" +
			    "		public String getValue() { return val; }\n" +
			    "	}\n" +
			    "	public Team0c3omwr3_2() {\n" +
			    "		Role r1 = new Role(\"NOK\");\n" +
			    "		Role r2 = r1.getR();\n" +
			    "		System.out.print(r2.getValue());\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a role implicitly inherits an abstract method
    // 0.c.4-otjld-copy-abstract-method-1
    public void test0c4_copyAbstractMethod1() {
       
       runConformTest(
            new String[] {
		"Team0c4cam1_3.java",
			    "\n" +
			    "public team class Team0c4cam1_3 extends Team0c4cam1_2 {\n" +
			    "	public class Role {\n" +
			    "		public String getValue() { return \"OK\"; }\n" +
			    "	}\n" +
			    "	public Team0c4cam1_3() {\n" +
			    "		System.out.print((new Role()).getValue());\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c4cam1_3();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam1_1.java",
			    "\n" +
			    "public team class Team0c4cam1_1 {\n" +
			    "	public abstract class Role {\n" +
			    "		public abstract String getValue();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam1_2.java",
			    "\n" +
			    "public team class Team0c4cam1_2 extends Team0c4cam1_1 {\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a role implicitly inherits an abstract method that is called from another method
    // 0.c.4-otjld-copy-abstract-method-2
    public void test0c4_copyAbstractMethod2() {
       
       runConformTest(
            new String[] {
		"Team0c4cam2_3.java",
			    "\n" +
			    "public team class Team0c4cam2_3 extends Team0c4cam2_2 {\n" +
			    "	public class Role {\n" +
			    "		String getVal() { return \"OK\"; }\n" +
			    "	}\n" +
			    "	public Team0c4cam2_3() {\n" +
			    "		System.out.print((new Role()).getValue());\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c4cam2_3();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam2_1.java",
			    "\n" +
			    "public team class Team0c4cam2_1 {\n" +
			    "	public abstract class Role {\n" +
			    "		abstract String getVal();\n" +
			    "		public String getValue() { return getVal(); }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam2_2.java",
			    "\n" +
			    "public team class Team0c4cam2_2 extends Team0c4cam2_1 {\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // Bug 355311 - error regarding abstract method in non-abstract role may be displayed at position 0
    public void test0c4_copyAbstractMethod3() {
       
       runNegativeTest(
            new String[] {
		"Team0c4cam3_1.java",
			    "\n" +
			    "public team class Team0c4cam3_1 {\n" +
			    "	public abstract class Role {\n" +
			    "		abstract String getVal();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam3_2.java",
			    "\n" +
			    "public team class Team0c4cam3_2 extends Team0c4cam3_1 {\n" +
			    "   @Override\n" +
			    "	public class Role {\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "----------\n" + 
    		"1. ERROR in Team0c4cam3_2.java (at line 4)\n" + 
    		"	public class Role {\n" + 
    		"	             ^^^^\n" + 
    		"The abstract method getVal in type Role can only be defined by an abstract class\n" + 
    		"----------\n" +
    		"2. ERROR in Team0c4cam3_2.java (at line 4)\n" + 
    		"	public class Role {\n" + 
    		"	             ^^^^\n" + 
    		"The type Team0c4cam3_2.Role must implement the inherited abstract method Team0c4cam3_2.Role.getVal()\n" + 
    		"----------\n");
    }

    // Bug 359894 - [compiler] support @Override for static role methods
    public void test0c4_copyAbstractMethod4() {
       
       runConformTest(
            new String[] {
		"Team0c4cam4_1.java",
			    "\n" +
			    "public team class Team0c4cam4_1 {\n" +
			    "	public abstract class Role {\n" +
			    "		abstract static String getVal();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c4cam4_2.java",
			    "\n" +
			    "public team class Team0c4cam4_2 extends Team0c4cam4_1 {\n" +
			    "   @Override\n" +
			    "	public class Role {\n" +
			    "       @Override\n" +
			    "       static String getVal() { return null; }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "");
    }

    // a role implicitely inherits a constructor  - changed between compiles - buggy tsuper-tsuper
    // 0.c.5-otjld-changes-between-compiles-1
    public void test0c5_changesBetweenCompiles1() {
        runNegativeTest(
            new String[] {
		"T0c5cbc1.java",
			    "\n" +
			    "public class  T0c5cbc1 {}	\n" +
			    "	\n",
		"Team0c5cbc1_3.java",
			    "\n" +
			    "public team class Team0c5cbc1_3 extends Team0c5cbc1_2 {\n" +
			    "	public class R {\n" +
			    "		R(String s) {\n" +
			    "			tsuper(s);\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c5cbc1_3() {\n" +
			    "		(new R(\"OK\")).test();\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c5cbc1_3();\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n",
		"Team0c5cbc1_1.java",
			    "\n" +
			    "public team class Team0c5cbc1_1 {\n" +
			    "	public class R playedBy T0c5cbc1 {\n" +
			    "		String t;\n" +
			    "		R(String s) {\n" +
			    "			// base(); missing\n" +
			    "			this.t = s;\n" +
			    "		}\n" +
			    "		public void test() {\n" +
			    "			System.out.print(t);\n" +
			    "		}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n",
		"Team0c5cbc1_2.java",
			    "\n" +
			    "public team class Team0c5cbc1_2 extends Team0c5cbc1_1 {\n" +
			    "	public class R {\n" +
			    "		R(String s) {\n" +
			    "			tsuper(s);\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            null);
    }

    // a role implicitely inherits a constructor  - changed between compiles - corrected program - change not relevant here
    // 0.c.5-otjld-changes-between-compiles-2
    public void test0c5_changesBetweenCompiles2() {
       
       runConformTest(
            new String[] {
		"Team0c5cbc2_3.java",
			    "\n" +
			    "public team class Team0c5cbc2_3 extends Team0c5cbc2_2 {\n" +
			    "	public class R {\n" +
			    "		protected R(String s3) {\n" +
			    "			tsuper(s3);\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c5cbc2_3() {\n" +
			    "		(new R(\"OK\")).test();\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c5cbc2_3();\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n",
		"T0c5cbc2.java",
			    "\n" +
			    "public class  T0c5cbc2 {}	\n" +
			    "	\n",
		"Team0c5cbc2_1.java",
			    "\n" +
			    "public team class Team0c5cbc2_1 {\n" +
			    "	public class R playedBy T0c5cbc2 {\n" +
			    "		String t;\n" +
			    "		R(String s1) {\n" +
			    "			base();\n" +
			    "			this.t = s1;\n" +
			    "		}\n" +
			    "		public void test() {\n" +
			    "			System.out.print(t);\n" +
			    "		}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n",
		"Team0c5cbc2_2.java",
			    "\n" +
			    "public team class Team0c5cbc2_2 extends Team0c5cbc2_1 {\n" +
			    "	public class R {\n" +
			    "		R(String s2) {\n" +
			    "			tsuper(s2);\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // a role refines the extends clause, invoking tsuper of its bound tsuper role
    // 0.c.6-otjld-ctor-with-changed-extends-1
    public void test0c6_ctorWithChangedExtends1() {
        runNegativeTestMatching(
            new String[] {
		"Team0c6cwce1_2.java",
			    "\n" +
			    "public team class Team0c6cwce1_2 extends Team0c6cwce1_1 {\n" +
			    "	public class R extends Super0c6cwce1 {\n" +
			    "		protected R(String s) {\n" +
			    "			tsuper(s);\n" +
			    "		}\n" +
			    "		protected void test() {\n" +
			    "			System.out.print(s);\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c6cwce1_2() {\n" +
			    "		(new R(\"OK\")).test();\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c6cwce1_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"T0c6cwce1.java",
			    "\n" +
			    "public class  T0c6cwce1 {}	\n" +
			    "	\n",
		"Super0c6cwce1.java",
			    "\n" +
			    "public class  Super0c6cwce1 {}	\n" +
			    "	\n",
		"Team0c6cwce1_1.java",
			    "\n" +
			    "public team class Team0c6cwce1_1 {\n" +
			    "	public class R playedBy T0c6cwce1 {\n" +
			    "		String s;\n" +
			    "		R(String s) {\n" +
			    "			base();\n" +
			    "			this.s = s;\n" +
			    "		}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "1.3.2(c)");
    }

    // a role refines the extends clause, invoking super and base and a role method
    // 0.c.6-otjld-ctor-with-changed-extends-2
    public void test0c6_ctorWithChangedExtends2() {
       
       runConformTest(
            new String[] {
		"Team0c6cwce2_2.java",
			    "\n" +
			    "public team class Team0c6cwce2_2 extends Team0c6cwce2_1 {\n" +
			    "	public class R extends Super0c6cwce2 {\n" +
			    "		protected R(String s) {\n" +
			    "			super();\n" +
			    "			base();\n" +
			    "			setS(s);\n" +
			    "		}\n" +
			    "		protected void test() {\n" +
			    "			System.out.print(s);\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c6cwce2_2() {\n" +
			    "		(new R(\"OK\")).test();\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c6cwce2_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"T0c6cwce2.java",
			    "\n" +
			    "public class  T0c6cwce2 {}	\n" +
			    "	\n",
		"Super0c6cwce2.java",
			    "\n" +
			    "public class  Super0c6cwce2 {}	\n" +
			    "	\n",
		"Team0c6cwce2_1.java",
			    "\n" +
			    "public team class Team0c6cwce2_1 {\n" +
			    "	public class R playedBy T0c6cwce2 {\n" +
			    "		String s;\n" +
			    "		protected R(String s) {\n" +
			    "			base();\n" +
			    "			setS(s);\n" +
			    "		}\n" +
			    "		void setS(String s) {\n" +
			    "			this.s = s;\n" +
			    "		}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "OK");
    }

    // a role refines the extends clause, invoking super and base and a final role method
    // 0.c.6-otjld-ctor-with-changed-extends-3
    public void test0c6_ctorWithChangedExtends3() {
       
       runConformTest(
            new String[] {
		"Team0c6cwce3_2.java",
			    "\n" +
			    "public team class Team0c6cwce3_2 extends Team0c6cwce3_1 {\n" +
			    "	public class R extends Super0c6cwce3 {\n" +
			    "		protected R(String s) {\n" +
			    "			super();\n" +
			    "			base();\n" +
			    "			setS(s);\n" +
			    "		}\n" +
			    "		public void test() {\n" +
			    "			System.out.print(s);\n" +
			    "		}\n" +
			    "	}\n" +
			    "	public Team0c6cwce3_2() {\n" +
			    "		(new R(\"OK\")).test();\n" +
			    "	}\n" +
			    "	public static void main(String[] args) {\n" +
			    "		new Team0c6cwce3_2();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"T0c6cwce3.java",
			    "\n" +
			    "public class  T0c6cwce3 {}	\n" +
			    "	\n",
		"Super0c6cwce3.java",
			    "\n" +
			    "public class  Super0c6cwce3 {}	\n" +
			    "	\n",
		"Team0c6cwce3_1.java",
			    "\n" +
			    "public team class Team0c6cwce3_1 {\n" +
			    "	public class R playedBy T0c6cwce3 {\n" +
			    "		String s;\n" +
			    "		protected R(String s) {\n" +
			    "			base();\n" +
			    "			setS(s);\n" +
			    "		}\n" +
			    "		final void setS(String s) {\n" +
			    "			this.s = s;\n" +
			    "		}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "OK");
    }
    public void test0c6_ctorWithChangedExtends4() {
        runConformTest(
        	new String[] {
         "Team0c6cwce4_2.java",
        		"public team class Team0c6cwce4_2 extends Team0c6cwce4_1 {\n" + // should inherit class R1 extends R0
         		"	@Override\n" +
    			"	protected class R2 extends R1 {\n" + 
    			"		public R2() {\n" + 
    			"			super();\n" + 
    			"		}\n" + 
    			"	}\n" + 
    			"	void test() {\n" + 
    			"		R2 r = new R2();\n" + 
    			"		System.out.print(r.val);\n" + 
    			"	}\n" + 
    			"	public static void main(String[] args) {\n" + 
    			"		new Team0c6cwce4_2().test();\n" + 
    			"	}\n" + 
    			"}\n",
    	 "Team0c6cwce4_1.java",
		    	"public team class Team0c6cwce4_1 {\n" + 
		 		"	protected class R0 {\n" +
		 		"		public String val;\n" + 
		 		"\n" + 
		 		"		public R0(String val) {\n" + 
		 		"			this.val = val;\n" + 
		 		"		}		\n" + 
		 		"	}\n" + 
		 		"	protected class R1 extends R0 {\n" + 
		 		"		public R1() {\n" + 
		 		"			super(\"T1.R1\");\n" + 
		 		"		}\n" + 
		 		"	}\n" + 
		 		"	protected class R2 extends R0 {\n" + 
		 		"		public R2(String val) {\n" + 
		 		"			super(val);\n" + 
		 		"		}		\n" + 
		 		"	}\n" + 
		 		"}\n"
		 		},
		 		"T1.R1");
    }
    public void test0c6_ctorWithChangedExtends5() {
        runConformTest(
             new String[] {
         "Team0c6cwce5_2.java",
         		"public team class Team0c6cwce5_2 extends Team0c6cwce5_1 {\n" +
         		"	@Override\n" +
         		"   protected class R1 extends R0 {} \n" + // should inherited ctor public R1() 
         		"	@Override\n" +
     			"	protected class R2 extends R1 {\n" + 
     			"		public R2() {\n" + 
     			"			super();\n" + 
     			"		}\n" + 
     			"	}\n" + 
     			"	void test() {\n" + 
     			"		R2 r = new R2();\n" + 
     			"		System.out.print(r.val);\n" + 
     			"	}\n" + 
     			"	public static void main(String[] args) {\n" + 
     			"		new Team0c6cwce5_2().test();\n" + 
     			"	}\n" + 
     			"}\n",
     	 "Team0c6cwce5_1.java",
 		    	"public team class Team0c6cwce5_1 {\n" + 
 		 		"	protected class R0 {\n" +
 		 		"		public String val;\n" + 
 		 		"\n" + 
 		 		"		public R0(String val) {\n" + 
 		 		"			this.val = val;\n" + 
 		 		"		}		\n" + 
 		 		"	}\n" + 
 		 		"	protected class R1 extends R0 {\n" + 
 		 		"		public R1() {\n" + 
 		 		"			super(\"T1.R1\");\n" + 
 		 		"		}\n" + 
 		 		"	}\n" + 
 		 		"	protected class R2 extends R0 {\n" + 
 		 		"		public R2(String val) {\n" + 
 		 		"			super(val);\n" + 
 		 		"		}		\n" + 
 		 		"	}\n" + 
 		 		"}\n"
 		 		});
    }
    public void test0c6_ctorWithChangedExtends6() {
        runNegativeTest(
             new String[] {
         "Team0c6cwce6_2.java",
          		"public team class Team0c6cwce6_2 extends Team0c6cwce6_1 {\n" +
          		"	@Override\n" +
          		"   protected class R1 extends R0 {\n" +
          		"   } \n" +  
          		"	@Override\n" +
      			"	protected class R2 extends R1 {\n" + 
      			"		public R2() {\n" + 
      			"			super();\n" +
      			"			tsuper(\"T2.R2\");\n" + 
      			"		}\n" + 
      			"	}\n" + 
      			"	void test() {\n" + 
      			"		R2 r = new R2();\n" + 
      			"		System.out.print(r.val);\n" + 
      			"	}\n" + 
      			"	public static void main(String[] args) {\n" + 
      			"		new Team0c6cwce6_2().test();\n" + 
      			"	}\n" + 
      			"}\n",
      	 "Team0c6cwce6_1.java",
  		    	"public team class Team0c6cwce6_1 {\n" + 
  		 		"	protected class R0 {\n" +
  		 		"		public String val;\n" + 
  		 		"\n" + 
  		 		"		public R0(String val) {\n" + 
  		 		"			this.val = val;\n" + 
  		 		"		}		\n" + 
  		 		"	}\n" + 
  		 		"	protected class R1 extends R0 {\n" + 
  		 		"		public R1() {\n" + 
  		 		"			super(\"T1.R1\");\n" + 
  		 		"		}\n" + 
  		 		"	}\n" + 
  		 		"	protected class R2 extends R0 {\n" + 
  		 		"		public R2(String val) {\n" + 
  		 		"			super(val);\n" + 
  		 		"		}		\n" + 
  		 		"	}\n" + 
  		 		"}\n"
  		 		},
  		 		"----------\n" +
  		 		"1. ERROR in Team0c6cwce6_2.java (at line 9)\n" +
  		 		"	tsuper(\"T2.R2\");\n" +
  		 		"	^^^^^^^^^^^^^^^^\n" +
  		 		"Constructor call (tsuper) must be the first statement in a role constructor (OTJLD 2.4.2).\n" +
  		 		"----------\n");
    }

    // tsuper ctor call in non-role (is actually a method call now ;-)
    // 0.c.7-otjld-illegal-tsuper-ctor-call-1
    public void test0c7_illegalTsuperCtorCall1() {
        runConformTest(
            new String[] {
		"T0c7itcc1.java",
			    "\n" +
			    "public class T0c7itcc1 {\n" +
			    "	T0c7itcc1 () {\n" +
			    "		tsuper();\n" +
			    "	}\n" +
			    "	void tsuper() {}\n" +
			    "}\n" +
			    "	\n"
            });
    }

    // tsuper ctor call in role without tsuper role
    // 0.c.7-otjld-illegal-tsuper-ctor-call-2
    public void test0c7_illegalTsuperCtorCall2() {
        runNegativeTestMatching(
            new String[] {
		"Team0c7itcc2.java",
			    "\n" +
			    "public team class Team0c7itcc2 {\n" +
			    "	protected class R {\n" +
			    "		R() {\n" +
			    "			tsuper();\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "cc");
    }

    // tsuper ctor call in role with wrong signature
    // 0.c.7-otjld-illegal-tsuper-ctor-call-3
    public void test0c7_illegalTsuperCtorCall3() {
        runNegativeTest(
            new String[] {
		"Team0c7itcc3_2.java",
			    "\n" +
			    "public team class Team0c7itcc3_2 extends Team0c7itcc3_1 {\n" +
			    "	@Override\n" +
			    "	protected class R {\n" +
			    "		public R() {\n" +
			    "			tsuper(7);\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c7itcc3_1.java",
			    "\n" +
			    "public team class Team0c7itcc3_1 {\n" +
			    "	protected class R { /* only default ctor */ }\n" +
			    "}	\n" +
			    "	\n"
            },
            "----------\n" + 
    		"1. ERROR in Team0c7itcc3_2.java (at line 6)\n" + 
    		"	tsuper(7);\n" + 
    		"	^^^^^^^^^^\n" + 
    		"The constructor Team0c7itcc3_1.R(int) is undefined\n" + 
    		"----------\n");
    }

    // a role tries to override a final method from its tsuper role
    // 0.c.8-otjld-overriding-final-method-1
    public void test0c8_overridingFinalMethod1() {
        runNegativeTestMatching(
            new String[] {
		"Team0c8ofm1_2.java",
			    "\n" +
			    "public team class Team0c8ofm1_2 extends Team0c8ofm1_1 {\n" +
			    "	protected class R {\n" +
			    "		void foo() { System.out.print(\"NOK\"); }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c8ofm1_1.java",
			    "\n" +
			    "public team class Team0c8ofm1_1 {\n" +
			    "	protected class R {\n" +
			    "		final void foo() { System.out.print(\"NOP\"); }\n" +
			    "	}	\n" +
			    "}\n" +
			    "	\n"
            },
            "final");
    }

    // a role tries to override a final method from its super role
    // 0.c.8-otjld-overriding-final-method-2
    public void test0c8_overridingFinalMethod2() {
        runNegativeTestMatching(
            new String[] {
		"Team0c8ofm2_2.java",
			    "\n" +
			    "public team class Team0c8ofm2_2 extends Team0c8ofm2_1 {\n" +
			    "	protected class R2 extends R1 {\n" +
			    "		void foo() { System.out.print(\"NOK\"); }\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team0c8ofm2_1.java",
			    "\n" +
			    "public team class Team0c8ofm2_1 {\n" +
			    "	protected class R1 {\n" +
			    "		final void foo() { System.out.print(\"NOP\"); }\n" +
			    "	}	\n" +
			    "}\n" +
			    "	\n"
            },
            "final");
    }

    // a private method is callin bound, subteam inherits everything. Bug reported by OTS-students working on OTPong
    // 0.c.9-otjld-implicitly-inheriting-callin-to-private-1
    public void test0c9_implicitlyInheritingCallinToPrivate1() {
       
       runConformTest(
            new String[] {
		"Team0c9iictp1_2.java",
			    "\n" +
			    "public team class Team0c9iictp1_2 extends Team0c9iictp1_1 {\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team0c9iictp1_2().activate();\n" +
			    "        new T0c9iictp1().test();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"T0c9iictp1.java",
			    "\n" +
			    "public class T0c9iictp1 {\n" +
			    "    public void test() {\n" +
			    "        System.out.print(\"O\");\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team0c9iictp1_1.java",
			    "\n" +
			    "public team class Team0c9iictp1_1 {\n" +
			    "    protected class R playedBy T0c9iictp1 {\n" +
			    "        private void test() {\n" +
			    "            System.out.print(\"K\");\n" +
			    "        }\n" +
			    "        t: test <- after test;\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // a role tries to override a final tsuper role
    // 0.c.10-otjld-override-final-role-1
    public void test0c10_overrideFinalRole1() {
        runNegativeTestMatching(
            new String[] {
		"Team0c10ofr1_2.java",
			    "\n" +
			    "public team class Team0c10ofr1_2 extends Team0c10ofr1_1 {\n" +
			    "    protected class R {}\n" +
			    "}\n" +
			    "    \n",
		"Team0c10ofr1_1.java",
			    "\n" +
			    "public team class Team0c10ofr1_1 {\n" +
			    "    final protected class R {}\n" +
			    "}\n" +
			    "    \n"
            },
            "final");
    }

    // 
    // 0.c.11-otjld-implicitly-inheriting-static-role-method-1
    public void test0c11_implicitlyInheritingStaticRoleMethod1() {
       
       runConformTest(
            new String[] {
		"Team0c11iisrm1_2.java",
			    "\n" +
			    "public team class Team0c11iisrm1_2 extends Team0c11iisrm1_1 {\n" +
			    "    protected class R {\n" +
			    "        String getValue() {\n" +
			    "            return \"OK\";\n" +
			    "        }\n" +
			    "    }\n" +
			    "    Team0c11iisrm1_2() {\n" +
			    "        System.out.print(R.getVal(new R(),\"!\"));\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team0c11iisrm1_2();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team0c11iisrm1_1.java",
			    "\n" +
			    "public team class Team0c11iisrm1_1 {\n" +
			    "    abstract protected class R {\n" +
			    "        protected static String getVal(R r, String postfix) {\n" +
			    "            R r2 = r;\n" +
			    "            String result = r2.getValue()+postfix;\n" +
			    "            return result;\n" +
			    "        }\n" +
			    "        abstract String getValue();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK!");
    }

    // a tsuper call initially does not require a marker arg, but byte code copy has to add one
    // 0.c.12-otjld-tsuper-call-rewriting-1
    public void test0c12_tsuperCallRewriting1() {
       
       runConformTest(
            new String[] {
		"Team0c12tcr1_3.java",
			    "\n" +
			    "public team class Team0c12tcr1_3 extends Team0c12tcr1_2 {\n" +
			    "    protected class R {\n" +
			    "        protected R() { // overrides inherited no-arg ctor\n" +
			    "            tsuper(23);\n" +
			    "        }\n" +
			    "    }\n" +
			    "    void test() {\n" +
			    "        new R();\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team0c12tcr1_3().test();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team0c12tcr1_1.java",
			    "\n" +
			    "public team class Team0c12tcr1_1 {\n" +
			    "    protected class R {\n" +
			    "        R() {\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team0c12tcr1_2.java",
			    "\n" +
			    "public team class Team0c12tcr1_2 extends Team0c12tcr1_1 {\n" +
			    "    protected class R {\n" +
			    "        R(int i) {\n" +
			    "            tsuper(); // no marker arg needed\n" +
			    "            System.out.print(i);\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK23");
    }

    // a class implicitly inherits a super interface declaration - src-level role ifc
    // 0.c.13-otjld-implicitly-inherited-superinterface-1
    public void test0c13_implicitlyInheritedSuperinterface1() {
       
       runConformTest(
            new String[] {
		"Team0c13iis1_2.java",
			    "\n" +
			    "public team class Team0c13iis1_2 extends Team0c13iis1_1 {\n" +
			    "    protected class R1 extends R0 playedBy T0c13iis1 {\n" +
			    "        public void print() {\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    void test(T0c13iis1 as R1 o) {\n" +
			    "        test();\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team0c13iis1_2().test(new T0c13iis1());\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team0c13iis1_1.java",
			    "\n" +
			    "public abstract team class Team0c13iis1_1 {\n" +
			    "    protected interface I { void print(); }\n" +
			    "    protected abstract class R0 implements I {}\n" +
			    "    void test() {\n" +
			    "        for (Object role : getAllRoles()) {\n" +
			    "            if (role instanceof I)\n" +
			    "                ((I)role).print();\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"T0c13iis1.java",
			    "\n" +
			    "public class T0c13iis1 {}\n" +
			    "    \n"
            },
            "OK");
    }
    
    // a role implicitly inherits a final field with an initializer.
    // see Bug 315322 -  [compiler] final field with initializer breaks implicit inheritance
    public void test0c14_implicitlyInheritedInitializedField1() {
    	runConformTest(
    		new String[] {
    	"Team0c14iiif1_2.java",
    			"public team class Team0c14iiif1_2 extends Team0c14iiif1_1 {\n" +
    			"	protected class R {\n" +
    			"		protected R() { super(); }\n" + // triggers blank final analysis
    			"		protected void test() {\n" +
    			"			System.out.print(val);\n" +
    			"		}\n" +
    			"	}\n" +
    			"	public void test() {\n" +
    			"		new R().test();\n" +
    			"	}\n" +
    			"	public static void main(String... args) {\n" +
    			"		new Team0c14iiif1_2().test();\n" +
    			"	}\n" +
    			"}\n",
    	"Team0c14iiif1_1.java",
    			"public team class Team0c14iiif1_1 {\n" +
    			"	protected class R {\n" +
    			"		final String val= new String(\"OK\");\n" +
    			"	}\n" +
    			"}\n"
    		},
    		"OK");
    }

    // for the following tests confer also test2331_roleCreationInvalidatedBySpecialization1().

    // see Bug 318415 -  Copy inheritance problem
    // no harm since illegal ctor is not invoked
    public void _test0c15_overrideBoundSuperRole1() {
    	runConformTest(
    		new String[] {
    	"T0c15obsr1Main.java",
	    		"import org.objectteams.Team;\n" +
	    		"public class T0c15obsr1Main {\n" +
	    		"	public static void main(String[] args) {\n" +
	    		"		Team0c15obsr1_2 t = new Team0c15obsr1_2();\n" +
	    		"		t.activate(Team.ALL_THREADS);\n" +
	    		"		T0c15obsr1_1 b = new T0c15obsr1_2();\n" +
	    		"		b.m();\n" +
	    		"	}\n" +
	    		"}\n",
    	"T0c15obsr1_1.java",
	    		"public class T0c15obsr1_1 {\n" +
	    		"	public void m() { System.out.print(\"m\"); }\n" +
	    		"}\n",
    	"T0c15obsr1_2.java",
	    		"public class T0c15obsr1_2 extends T0c15obsr1_1 {\n" +
	    		"}\n",
    	"Team0c15obsr1_1.java",
	    		"public team class Team0c15obsr1_1 {\n" +
	    		"	protected class R {\n" +
	    		"		void foo() { System.out.print(\"foo\"); }\n" +
	    		"	}\n" +
	    		"	protected class RSub extends R playedBy T0c15obsr1_2 {\n" +
	    		"		foo <- after m;\n" +
	    		"	}\n" +
	    		"}\n",
    	"Team0c15obsr1_2.java",
	    		"public team class Team0c15obsr1_2 extends Team0c15obsr1_1 {\n" +
	    		"	protected class R playedBy T0c15obsr1_1 {}\n" +
	    		"}\n"    		
    		},
    		"mfoo");
    }

    // see Bug 318415 -  Copy inheritance problem
    public void _test0c15_overrideBoundSuperRole4() {
    	runConformTest(
    		new String[] {
    	"T0c15obsr4Main.java",
	    		"import org.objectteams.Team;\n" +
	    		"public class T0c15obsr4Main {\n" +
	    		"	public static void main(String[] args) {\n" +
	    		"		Team0c15obsr4_2 t = new Team0c15obsr4_2();\n" +
	    		"		t.activate(Team.ALL_THREADS);\n" +
	    		"		T0c15obsr4_1 b = new T0c15obsr4_2();\n" +
	    		"		b.m();\n" +
	    		"	}\n" +
	    		"}\n",
    	"T0c15obsr4_1.java",
	    		"public class T0c15obsr4_1 {\n" +
	    		"	public void m() { System.out.print(\"m\"); }\n" +
	    		"}\n",
    	"T0c15obsr4_2.java",
	    		"public class T0c15obsr4_2 extends T0c15obsr4_1 {\n" +
	    		"}\n",
    	"Team0c15obsr4_1.java",
	    		"public team class Team0c15obsr4_1 {\n" +
	    		"	protected class R {\n" +
	    		"		void foo() { System.out.print(\"foo\"); }\n" +
	    		"	}\n" +
	    		"	protected class RSub extends R playedBy T0c15obsr4_2 {\n" +
	    		"		foo <- after m;\n" +
	    		"	}\n" +
	    		"}\n",
    	"Team0c15obsr4_2.java",
	    		"public team class Team0c15obsr4_2 extends Team0c15obsr4_1 {\n" +
	    		"	protected class R playedBy T0c15obsr4_1 {}\n" +
	    		"	protected class RSub {\n" +
	    		"		protected RSub(T0c15obsr4_2 o) {\n" +
	    		"			tsuper(o);\n" +
	    		"		}\n" +
	    		"	}\n" +
	    		"}\n"    		
    		},
    		"mfoo");
    }

    // see Bug 318415 -  Copy inheritance problem
    // cannot detect dynamically bound use of illegal role ctor => runtime exception
    public void test0c15_overrideBoundSuperRole2() {
    	runConformTest(
    		new String[] {
    	"T0c15obsr2Main.java",
	    		"import org.objectteams.Team;\n" +
	    		"public class T0c15obsr2Main {\n" +
	    		"	public static void main(String[] args) {\n" +
	    		"		Team0c15obsr2_2 t = new Team0c15obsr2_2();\n" +
	    		"		try {\n" +
	    		"			t.test();\n" +
	    		"		} catch (org.objectteams.IllegalRoleCreationException irce) {\n" +
	    		"			System.out.print(\"caught\");\n" +
	    		"		}\n" +
	    		"	}\n" +
	    		"}\n",
    	"T0c15obsr2_1.java",
	    		"public class T0c15obsr2_1 {}\n",
    	"Team0c15obsr2_1.java",
	    		"public team class Team0c15obsr2_1 {\n" +
	    		"	protected class R {}\n" +
	    		"	protected void test() {\n" +
	    		"		new R();\n" +
	    		"	}\n" +
	    		"}\n",
    	"Team0c15obsr2_2.java",
	    		"public team class Team0c15obsr2_2 extends Team0c15obsr2_1 {\n" +
	    		"	protected class R playedBy T0c15obsr2_1 {}\n" +
	    		"}\n"    		
    		},
    		"caught");
    }

    // detect use of inherited illegal role ctor 
    // see Bug 318415 -  Copy inheritance problem
    public void test0c15_overrideBoundSuperRole3() {
    	runConformTest(
    		new String[] {
    	"T0c15obsr3Main.java",
	    		"import org.objectteams.Team;\n" +
	    		"public class T0c15obsr3Main {\n" +
	    		"	public static void main(String[] args) {\n" +
	    		"		Team0c15obsr3_2 t = new Team0c15obsr3_2();\n" +
	    		"		try {\n" +
	    		"			t.test();\n" +
	    		"		} catch (org.objectteams.IllegalRoleCreationException irce) {\n" +
	    		"			System.out.print(\"caught\");\n" +
	    		"		}\n" +
	    		"	}\n" +
	    		"}\n",
    	"T0c15obsr3_1.java",
	    		"public class T0c15obsr3_1 {}\n",
    	"Team0c15obsr3_1.java",
	    		"public team class Team0c15obsr3_1 {\n" +
	    		"	protected class R0 {\n" +
	    		"		protected R0() {\n" +
	    		"			new R();" +
	    		"		}\n" +
	    		"	}\n" +
	    		"	public class R {}\n" +
	    		"	protected void test() {\n" +
	    		"		new R0();\n" +
	    		"	}\n" +
	    		"}\n",
    	"Team0c15obsr3_2.java",
	    		"public team class Team0c15obsr3_2 extends Team0c15obsr3_1 {\n" +
	    		"	public class R playedBy T0c15obsr3_1 {}\n" +
	    		"}\n"    		
    		},
    		"caught");
    }
    // witness for a regression : Method has no byte code: private java.lang.String test(java.lang.String)
    // 						      thrown from RoleModel.getByteCodeOffset(MethodBinding)
    public void test0c16_implicitInheritanceRegression1() {
    	runNegativeTest(
    		new String[] {
    	"Team0c16iir1_2.java",
				"public team class Team0c16iir1_2 extends Team0c16iir1_1<String> {\n" +
				"   @Override\n" +
				"	public class R playedBy T0c16iir1 {\n" +
				"		 test <- before test;\n" +
				"   }\n" +
				"}\n",
    	"Team0c16iir1_1.java",
    			"public team class Team0c16iir1_1<U> {\n" +
    			"	public class R {\n" +
				"        private String test(String u) {\n" +
				"            return \"O\"+base.test(u);\n" +
				"        }\n" +
    			"   }\n" +
    			"}\n",
    	"T0c16iir1.java",
    			"public class T0c16iir1 {\n" +
    			"   protected String test(String u){ return u;}" +
    			"}\n"
    		},
    		"----------\n" + 
    		"1. ERROR in Team0c16iir1_1.java (at line 4)\n" + 
			"	return \"O\"+base.test(u);\n" + 
			"	           ^^^^^^^^^^^^\n" + 
			"Cannot use \'base\' in the regular method \'test(String)\' (OTJLD 2.6(c)).\n" + 
			"----------\n");
    }

}

Back to the top