1   import junit.framework.Test;
2   import junit.framework.TestSuite;
3   import gls.ch06.s05.JName1Test;
4   
5   /***
6    * All Java Unit tests in the 'gls' dir
7    */
8   
9   public class AllGlsJavaTestsSuite {
10  
11      public static Test suite() {
12          TestSuite suite = new TestSuite();
13          suite.addTestSuite(JName1Test.class);
14          return suite;
15      }
16  }