testng:在 TestNG 测试中支持验证语句的工具

时间:2024-07-18 20:54:10
【文件属性】:

文件名称:testng:在 TestNG 测试中支持验证语句的工具

文件大小:10KB

文件格式:ZIP

更新时间:2024-07-18 20:54:10

Java

TestNG 验证工具 支持 TestNG 测试中的验证语句的工具。 该工具是 TestNG 框架验证语句的实现。 使用 TestNG 断言语句时,当断言失败时测试方法退出。 有时,即使在某些断言失败之后,您也希望测试方法继续执行。 在这种情况下,验证语句就派上用场了。 这些语句被创建为 TestNG 断言的包装器,其中每个断言错误将存储在缓冲区中,然后在每个测试方法执行后在 TestNG 结果对象中更新。 例子: @Test public void verifyToolTest{(){ Verify.verifyEquals("test1", "test1", "test1 doesn't match"); // pass Verify.verifyEquals("test!", "test2", "test2 doesn't match"); // fail (continue)


【文件预览】:
testng-master
----.gitignore(574B)
----README.md(2KB)
----verify-tool()
--------testng.xml(430B)
--------src()
--------pom.xml(868B)
----.gitattributes(378B)

网友评论