1 3 package jodd.servlet; 4 5 import junit.framework.Test; 6 import junit.framework.TestSuite; 7 8 public class AllTests extends TestSuite { 9 10 public AllTests() { 11 super("jodd.servlet test suite"); 12 addTestSuite(HtmlEncoderTest.class); 13 } 14 15 public static Test suite() { 16 return new AllTests(); 17 } 18 19 public static void main(String [] args) { 20 junit.textui.TestRunner.run(suite()); 21 } 22 } | Popular Tags |