1 43 44 package de.susebox.java.util; 45 46 import junit.framework.Test; 50 import junit.framework.TestCase; 51 import junit.framework.TestSuite; 52 53 import de.susebox.TestUtilities; 54 55 56 60 67 public class UtilTestSuite extends TestCase { 68 69 73 76 public static void main(String [] args) { 77 String [] tests = { UtilTestSuite.class.getName() }; 78 79 TestUtilities.run(tests, args); 80 } 81 82 83 87 93 public static Test suite() { 94 TestSuite suite = new TestSuite(UtilTestSuite.class.getName()); 95 96 return suite; 97 } 98 99 103 106 public UtilTestSuite(String name) { 107 super(name); 108 } 109 } 110 | Popular Tags |