1 38 39 40 package algorithm; 41 42 import junit.framework.*; 43 44 public class AlgorithmSuite extends TestCase { 45 46 public AlgorithmSuite(String testName) { 47 super(testName); 48 } 49 50 protected void setUp() throws java.lang.Exception { 51 } 52 53 protected void tearDown() throws java.lang.Exception { 54 } 55 56 60 public static junit.framework.Test suite() { 61 junit.framework.TestSuite suite = new junit.framework.TestSuite("AlgorithmSuite"); 62 suite.addTest(algorithm.AlgorithmTest.suite()); 63 return suite; 64 } 65 66 69 } 70 | Popular Tags |