Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PhFramework.pizzas.bbqMeatFeast.cheesyBites.LargeTest应该在继续PhFramework.pizzas.bbqMeatFeast.classicCrust.LargeTest之前执行所有测试
TestNG 似乎在所有类中执行第一个@Test,如果我一次只执行一个测试类,它工作正常。
testng.xml 代码:以下将失败,但如果我删除它工作的类之一。
请有人建议什么可能导致这个问题?
感谢您的帮助
在 testng.xml 的第 4 行,它应该是:
<suite name="Suite" parallel="tests" preserve-order="true">
preserver-order="true"应该在<test>标签中,而不是<suite>标签中
preserver-order="true"
<test>
<suite>
注意你的包名,你有不同的包,也许你在两个包上有相同的类名?