1 /***
2 * to prevent a JVM startup-shutdown time per test, it should be more efficient to
3 * collect the tests together into a suite.
4 *
5 * @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner</a>
6 * @version $Revision: 1.3 $
7 */
8 import junit.framework.Test;
9 import junit.framework.TestCase;
10 import junit.framework.TestSuite;
11
12 public class UberTestCaseTCK extends TestCase {
13 public static Test suite() {
14 TestSuite suite = new TestSuite();
15
16 suite.addTestSuite(gls.ch03.s01.Unicode1Test.class);
17
18
19 suite.addTestSuite(gls.ch03.s02.Longest1Test.class);
20 suite.addTestSuite(gls.ch03.s02.LexicalTranslation1Test.class);
21
22 suite.addTestSuite(gls.ch03.s03.UnicodeEscapes1Test.class);
23
24 return suite;
25 }
26 }
27