根据testng.xml 文件配置, 测试级别为suite -> test -> class -> methods.
test 对应testng.xml 中的test 标签, 而不是测试类里的@Test.
测试类里的@Test 对应 testng.xml中的methods.
创建TestCase 如TC3
运行效果
所以在使用@BeforeSuite,@BeforeTest,@BeforeClass,@BeforeMethod 等标签时,
它们的实际执行顺序也是suite -> test -> class -> method.
原文地址:https://www.cnblogs.com/54tester/p/11519151.html
时间: 2024-10-07 22:37:09