如何从不同的测试类中运行某些选定的测试用例,每个测试类都包含多个测试?
例如,我有3个测试类TestClassA,TestClassB和TestClassC。这些测试类中的每一个都有3个测试。
public class TestClassA {
@Test
public void testA1() {
//test method
}
@Test
public void testA2() {
//test method
}
@Test
public void testA3() {
//test method
}
}
public class TestClassB {
@Test
public void testB1() {
//test method
}
@Test
public void testB2() {
//test method
}
@Test
public void testB3() {
//test method
}
}
public class TestClassC {
@Test
public void testC1() {
//test method
}
@Test
public void testC2() {
//test method
}
@Test
public void testC3() {
//test method
}
}
参考上面的示例代码,我想一次运行测试testA1,testA2,testB2,testC2和testC3。是否有相同的配置?谢谢