是否有类似于Junit中的ErrorCollector的TestNG方法

时间:2013-01-29 06:57:21

标签: testng

在Junit中是否存在类似于ErrorCollector的TestNG方法,通过它我们可以在tesng中显示错误/执行错误?

提前thnaks

1 个答案:

答案 0 :(得分:4)

这看起来有点像SoftAsserts。 TestNG最近在6.8中引入了软断言。

import org.testng.asserts.SoftAssert;

了解更多@ http://beust.com/weblog/2012/07/29/reinventing-assertions/