1 package gov.nasa.jpf.jvm; 20 21 import junit.framework.TestSuite; 22 23 import junit.textui.TestRunner; 24 25 28 public class TestMethodJPF extends TestJPF { 29 static String testClass = "gov.nasa.jpf.jvm.TestMethod"; 30 31 public TestMethodJPF (String name) { 32 super(name); 33 } 34 35 public static void main (String [] args) { 36 TestRunner.run(suite()); 37 } 38 39 public static TestSuite suite () { 40 return new TestSuite(TestMethodJPF.class); 41 } 42 43 44 public void testCtor () { 45 String [] args = { testClass, "testCtor" }; 46 runJPFnoException(args); 47 } 48 49 public void testCall () { 50 String [] args = { testClass, "testCall" }; 51 runJPFnoException(args); 52 } 53 54 public void testInheritedCall () { 55 String [] args = { testClass, "testInheritedCall" }; 56 runJPFnoException(args); 57 } 58 59 public void testVirtualCall () { 60 String [] args = { testClass, "testVirtualCall" }; 61 runJPFnoException(args); 62 } 63 64 public void testSpecialCall () { 65 String [] args = { testClass, "testSpecialCall" }; 66 runJPFnoException(args); 67 } 68 69 public void testStaticCall () { 70 String [] args = { testClass, "testStaticCall" }; 71 runJPFnoException(args); 72 } 73 } 74 75 | Popular Tags |