I have the following suites below:
@RunWith(Suite.class)
// this other matters
@Suite.SuiteClasses({
TestC.class,
TestB.class,
TestA.class
})
public class MySuiteA {}
@RunWith(Suite.class)
// this other matters
@Suite.SuiteClasses({
TestD.class,
TestE.class,
TestF.class
})
public class MySuiteB {}
How would I make a suite or test that runs MySuiteA
and MySuiteB
?