我在具有Testng插件的最新Intellij IDEA中有一个Maven Java项目。我想在测试类中运行特定的组,而无需为此手动创建xml配置文件。
我可以通过运行配置菜单来代替吗?不幸的是,菜单只允许我选择组,类,方法等,而不能选择特定类中的组。
答案 0 :(得分:0)
假设您具有以下代码示例:
import org.testng.annotations.*;
public class Test1 {
@Test(groups = { "functest", "checkintest" })
public void testMethod1() {
}
@Test(groups = {"functest", "checkintest"} )
public void testMethod2() {
}
@Test(groups = { "functest" })
public void testMethod3() {
}
}
要仅运行 checkintest 组,请转到 运行配置 ,创建新的TestNG配置->选择“测试种类”“组”->选择< em> checkintest 组。 仅将运行testMethod1,testMethod2。