1 25 package org.snipsnap.test.commons; 26 27 import junit.framework.Test; 28 import junit.framework.TestCase; 29 import junit.framework.TestSuite; 30 31 public class AllCommonsTests extends TestCase { 32 public AllCommonsTests(String name) { 33 super(name); 34 } 35 36 public static Test suite() { 37 TestSuite s = new TestSuite(); 38 s.addTestSuite(UrlTest.class); 39 s.addTestSuite(QueryListTest.class); 40 return s; 41 } 42 } 43 | Popular Tags |