import org.junit.* ; import static org.junit.Assert.* ; import Sequenic.T3.Sequence.Datatype.SUITE; import SBST2015.* ; public class CobaT3TestTestMe { static Replayer replayer ; @BeforeClass public static void setup() throws Exception { replayer = new Replayer(SBST2015.TestMe.class,null) ; } @Test public void test_1() throws Exception { for (SUITE S : replayer.suites) assertTrue(replayer.test(S)) ; } @Test public void test_minOrc_1() throws Exception { for (SUITE S : replayer.minOrcSuites) assertTrue(replayer.test(S)) ; } @Test public void test_inner_1() throws Exception { for (SUITE S : replayer.inner_suites) assertTrue(replayer.test(S)) ; } @Test public void test_inner_minOrc_1() throws Exception { for (SUITE S : replayer.inner_minOrcSuites) assertTrue(replayer.test(S)) ; } }