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