Fixing a few bugs in the statistics printout.
[jpf-core.git] / src / tests / gov / nasa / jpf / test / vm / basic / CastTest.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18 package gov.nasa.jpf.test.vm.basic;
19
20 import gov.nasa.jpf.util.test.TestJPF;
21
22 import org.junit.Test;
23
24 /**
25  * test cast operations
26  */
27 public class CastTest extends TestJPF {
28   
29   @SuppressWarnings("cast")
30   @Test public void testCast () {
31     if (verifyNoPropertyViolation()){
32       B b = new B();
33       A a = b;
34
35       B bb = (B) a;
36       K k = a;
37       I i = (I) a;
38
39       C c = new C();
40       k = c;
41     }
42   }
43
44   @Test public void testCastFail () {
45     if (verifyUnhandledException("java.lang.ClassCastException")){
46       A a = new A();
47       I i = (I) a;
48     }
49   }
50
51   @Test public void testArrayCast () {
52     if (verifyNoPropertyViolation()){
53       String[] sa = new String[1];
54       Object o = sa;
55       Object[] ol = (Object[])o; // that should succeed
56     }
57   }
58   
59   @Test public void testArrayCastFail() {
60     if (verifyUnhandledException("java.lang.ClassCastException")){
61       String[] sa = new String[1];
62       Object o = sa ;
63       Number[] na = (Number[])o; // that should fail
64     }
65   }
66   
67   @Test public void testPrimitiveArrayCast() {
68     if (verifyNoPropertyViolation()){
69       int[] a = new int[10];
70       Object o = a;
71       int[] b = (int[]) o;
72     }
73   }
74   
75   //--- helper types and methods
76   
77   static interface I {
78   }
79
80   static interface J extends I {
81   }
82
83   static interface K {
84   }
85   
86   static class A implements K {
87   }
88
89   static class B extends A implements J {
90   }
91   
92   static class C extends B {
93   }
94 }