1 21 package org.snipsnap.test.label; 22 23 import junit.framework.Test; 24 import junit.framework.TestCase; 25 import junit.framework.TestSuite; 26 27 public class AllLabelTests extends TestCase { 28 public AllLabelTests(String name) { 29 super(name); 30 } 31 32 public static Test suite() { 33 TestSuite s = new TestSuite(); 34 s.addTestSuite(LabelsTest.class); 35 return s; 36 } 37 } | Popular Tags |