Home | History | Annotate | Download | only in junit4
      1 package test.junit4;
      2 
      3 import org.junit.runners.Suite;
      4 
      5 /**
      6  *
      7  * @author lukas
      8  */
      9 @Suite.SuiteClasses({JUnit4Sample1.class})
     10 public class JUnit4Child extends JUnit4SampleSuite {
     11     public static final String[] EXPECTED = {"t1"};
     12 }
     13