1 34 package test; 35 36 import junit.framework.*; 37 38 44 public class AllTests { 45 public static void main(String [] args) { 46 49 junit.textui.TestRunner.run(suite()); 50 } 52 53 public static Test suite ( ) { 54 TestSuite suite= new TestSuite("All Tests for jarg"); 55 suite.addTest(test.renaming.AllRenamingTests.suite()); 56 return suite; 57 } 58 } 59 | Popular Tags |