范围报告覆盖类别,仅显示上次测试

问题描述 投票:0回答:1

我正在尝试创建一个包含多个类别的范围报告,这与testng结合使用。但每次我运行几个类时它都会覆盖最后一个类别,最后我只会有最后一个类别。有什么办法可以阻止这个吗?

以下方法在@BeforeMethod中运行,在这里我将初始化我的测试

private void setupReportBeforeTest(Method method){
    Test test = method.getAnnotation(Test.class);
    String author = "ABC";
    String description = "Test";
    try{
        description = test.description().split(",author:")[0];
        if (test.description().contains(",bug:")){
            author = test.description().split(",author:")[1].split(",bug:")[0];
            this.setJiraBug(test.description().split(",author:")[1].split(",bug:")[1]);
        }else {
            author = test.description().split(",author:")[1];
            this.setJiraBug(null);
        }

    }catch (Exception e){       }

    logging = extentReports.createTest(this.getTestName() + "-" + method.getName(),description)
        .assignCategory(test.groups())
        .assignAuthor(author).pass("Test");
}

我从以下获取组信息:

@Test(groups = "Testgroup1",description = "Test1,author:Steve")
java selenium testng extentreports
1个回答
0
投票

您可以在此setupReportBeforeTest()中分配这些类别,但在测试完成时,您可以在另一个函数中分配这些类别,并且您将收集表格中的每个组。

public void assign ( String[] testCategory)
        reportTest.assignCategory(testCategory);
© www.soinside.com 2019 - 2024. All rights reserved.