作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我执行我的 testNG 项目时,它混合了我在同一个 <test>
下添加的不同类的所有测试。基于优先级。我如何编码,以便在转到下一类之前我需要按优先级顺序运行第一类上的所有方法?
<test name="test1">
<classes>
<class name="class1" />
<class name="class2" />
</classes>
</test>
2019 年 12 月 16 日编辑:
这是我的示例代码:
第 1 类:
public class LearningTestNG extends masterClass
{
@Test
public void test()
{
System.out.println("Priority 0 (Default in Class 1)");
}
@Test(priority = 1)
public void test2()
{
System.out.println("Priority 1 (Class 1)");
}
@Test(priority = 0)
public void test3()
{
System.out.println("Priority 0 (Class 1)");
}
@Test(priority = 1)
public void atest4()
{
System.out.println("Priority 1 (Class 1)");
}
}
第 2 类:
public class LearningTestNGTest2 extends masterClass
{
@Test(priority = 0)
public void testin_LearningTestNGTest2_Class()
{
System.out.println("Priority 0 (Class 2)");
}
}
XML:
<classes>
<class name="testclasses.LearningTestNG" />
<class name="testclasses.LearningTestNGTest2" />
</classes>
输出:
[RemoteTestNG] detected TestNG version 6.12.0
Priority 0 (Default in Class 1)
Priority 0 (Class 1)
Priority 0 (Class 2)
Priority 1 (Class 1)
Priority 1 (Class 1)
===============================================
suiteNameGiveninXML
Total tests run: 5, Failures: 0, Skips: 0
===============================================
最佳答案
在class1中,如果你在class1的@Test下使用了priority=1,然后是2,然后是3等等,那么优先级为1,2,3...的Test方法将首先被执行,然后控制权将移动一旦 class1 在测试 name="test1"下完成,就转到 class2。
关于java - 如何在 TestNG 中对每个类别的优先级进行分组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59318704/
我是一名优秀的程序员,十分优秀!