51Testing软件测试论坛

标题: [提问] 关于 testng 的 beforeMethod 标签化问题 [打印本页]

作者: 草帽路飞UU    时间: 2019-4-16 11:51
标题: [提问] 关于 testng 的 beforeMethod 标签化问题
看到有人发个帖子,关于如果定制TESTNG报告的,我自己实现过一个自定义的简单报告,所以也就顺便谈谈。

【背景】
随着用例数目增多,不同类型的用例需要的初始化步骤不同,想通过groups 配合 beforeMethod 来区分初始化工作。
不想通过类来管理,用例组织不太好看。--- 大家暂且忽略这个方案
尝试对beforeMethod 标签化,未能生效

【代码】

  1. // test case 1
  2. @Test(groups = {"reset"})
  3. public void testCase1() {
  4.     System.out.println("in test case 1");
  5. }

  6. // test case 2
  7. @Test
  8. public void testCase2() {
  9.     System.out.println("in test case 2");
  10. }

  11. @BeforeMethod(groups = {"reset"}, alwaysRun = false)
  12. public void beforeMethod1() {
  13.     System.out.println("in beforeMethod1-reset");
  14. }

  15. @BeforeMethod
  16. public void beforeMethod2() {
  17.     System.out.println("in beforeMethod2");
  18. }
  19. 【期望结果】
  20. testCase1 调用beforeMethod1 初始化
  21. testCase2 调用beforeMethod2 初始化

  22. 【实际结果】

  23. in beforeMethod1-reset
  24. in beforeMethod2
  25. in test case 1
  26. in beforeMethod1-reset
  27. in beforeMethod2
  28. in test case 2
复制代码

两个beforeMethod均被用例调用,未能达到期望的效果




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2