1 2 8 package ch.ethz.prose; 9 10 import junit.framework.*; 12 13 19 public 20 class JVMAITests extends TestCase { 21 22 23 24 26 30 public JVMAITests(String name) 31 { 32 super(name); 33 } 34 35 36 39 protected void setUp() 40 { 41 } 42 43 protected void tearDown() 44 { 45 } 46 47 51 public static 52 Test suite() 53 { 54 TestSuite testSuite = new TestSuite(); 55 testSuite.addTest(JVMAspectInterfaceTest.suite()); 57 testSuite.addTest(JVMInfoInterfaceTest.suite()); 58 return testSuite; 59 } 60 61 62 63 } 64 65 66 | Popular Tags |