Home | History | Annotate | Download | only in testsetup
      1 package test.junit.testsetup;
      2 
      3 import junit.framework.Test;
      4 import junit.framework.TestSuite;
      5 
      6 public class LayerATestSuite
      7 {
      8 	public static Test suite()
      9 	{
     10 		TestSuite suite = new TestSuite( "Layer A Test Suite" );
     11 
     12 		suite.addTestSuite( ATest.class );
     13 
     14 		TestSuiteContainerWrapper wrapper = new TestSuiteContainerWrapper(suite, Data.class);
     15 		return wrapper;
     16 	}
     17 }
     18