Home | History | Annotate | Download | only in junit
      1 package test.junit;
      2 
      3 import junit.framework.Test;
      4 import junit.framework.TestSuite;
      5 
      6 public class Suite4 {
      7   public static Test suite() {
      8     TestSuite suite = new TestSuite("Suite4");
      9     suite.addTestSuite(TestAe.class);
     10     suite.addTestSuite(TestAf.class);
     11     return suite;
     12   }
     13 }
     14