* tests/regression/bugzilla/All.java (Suite.SuiteClasses): Removed ,
[cacao.git] / tests / TestArrayClasses.output
1 ok String[] implements 2 interfaces
2 ok String[] implements Cloneable
3 ok String[] implements Serializable
4 ok String[] is public final abstract
5 ok classname ref
6 ok classname primitive
7 ok arraylength primitive
8 ok arraylength ref
9 ok arraylength of saa2
10 ok arraylength of saa2[1]
11 ok arraylength of saaa
12 ok arraylength of saaa[0]
13 ok arraylength of saaa[0][1]
14 ok Object[].isArray
15 ok int[].isArray
16 ok !Object.isArray
17 ok !Object.isPrimitive
18 ok component ref
19 ok component ref !isPrimitive
20 ok component primitive
21 ok component primitive isPrimitive
22 ok component of String[][] equals String[]
23 ok component of String[][] !equals Object[]
24 ok saa[0].getClass equals component of String[][]
25     ArrayStoreException
26 ok !store Object in String[]
27 ok store String in String[]
28 ok store Object in Object[]
29 ok store String in Object[]
30 ok store String[] in Object[][]
31     ArrayStoreException
32 ok !store Object[] in String[][]
33 ok store String[] in java.io.Serializable[]
34 ok store String[] in Cloneable[]
35     ArrayStoreException
36 ok !store String[] in StringBuffer[][]
37 ok store Foo in Foo[]
38 ok store FooChild in Foo[]
39     ArrayStoreException
40 ok !store Foo in FooChild[]
41 ok store FooChild in FooChild[]
42 ok cast String[] to Object[]
43     ClassCastException
44 ok !cast Object[] to String[]
45 ok String[] instanceof String[]
46 ok String[] instanceof Object[]
47 ok Object[] !instanceof String[]
48 ok Object[] instanceof Object[]
49 ok Object[][] instanceof Object[]
50 ok String[][] instanceof Object[]
51 ok String[] instanceof java.io.Serializable
52 ok String[] instanceof java.lang.Cloneable
53 ok String[] instanceof java.lang.Object
54 ok saa[0] instanceof java.io.Serializable
55 ok saa[0] instanceof java.lang.Cloneable
56 ok saa[0] instanceof java.lang.Object
57 ok cloned int array length
58 ok cloned int array data
59 ok cloned Integer array length
60 ok cloned Integer array data
61 ok arraycopy primitive
62 ok arraycopy ref
63 ok arraycopy ref different classes
64 ok arraycopy Integer to Number
65     ArrayStoreException
66 ok !arraycopy Number to Integer