我对 testng 范围报告中的测试和步骤之间的区别感到困惑。
我有 2 个测试用例,1 个通过,1 个失败。在测试中的范围报告中:1 次测试通过 1 次测试失败,0 次和在步骤下:1 步通过 2 步失败,0 次
那么有人会澄清两者之间的区别吗?
附加代码片段和测试范围报告
@Test
public void demoTestPass()
{
test = extent.createTest("demoTestPass", "This test will demonstrate the PASS test case");
Assert.assertTrue(true);
}
@Test
public void demoTestFail()
{
test = extent.createTest("demoTestFail", "This test will demonstrate the FAIL test case");
Assert.assertEquals("Hi", "Hello");
}
请点击此处查看范围报告。
任何澄清将不胜感激。