I have the following two test classes:
public class MyMainTest {
public void testMyMainTest(){...}
public void testAll(){...}
}
public class MySubTest extends MyMainTest{
...//all tests form MyMainTest will be executed
public void testMySubTest(){...}
}
When executing MySubTest
all inherited test methods from MyMainTest
will be executed. Is it possible, that MySubTest
only executes testAll()
?
Aucun commentaire:
Enregistrer un commentaire