1

我难住了。我已经阅读了许多在线主题,似乎无法找到我正在寻找的解决方案。

我想要的是在一个循环中并行运行测试,这样一个测试生成数据,另一个测试使用数据。

我发现传入的 ITestContext 对于在测试之间存储测试数据很有用。但是,当使用 dependsOnMethod 时,所有数据生成测试都会在第一个依赖方法运行之前运行。

有没有办法指定 @Factory 和 @DataProvider 的组合来实现我想要的?

public class DependencyTest1 {
    private String value;

    @DataProvider()
    public static Object[][] DependencyTestProvider() {
        return new Object[][] {
                // Data passed into tests
                { "String1" },
                { "String2" },
        };
    }

    @Factory(dataProvider = "DependencyTestProvider")
    public DependencyTest1(String value) {

        System.out.println("DataDependencyTest1 Constructor");
        System.out.println("String: " + value);

        this.value = value;

    }

    //*****************************************************************************
    //*****************************************************************************
    @Test(description = "Test Dependency Injection: Generate Test Data", groups = "unit")
    public void Test_DependencyInjection_GenerateTestData(ITestContext context, Method method) throws Exception {

        System.out.println("Test Name: " + method.getName());
        System.out.println("Create Test Data");
        System.out.println("String: " + value);
        System.out.println("Add data to current test context");

        context.setAttribute("value", value);
    }

    //*****************************************************************************
    //*****************************************************************************
    @Test(description = "Test Dependency Injection: Extract Test Data",groups = "unit", dependsOnMethods = "Test_DependencyInjection_GenerateTestData")
    public void Test_DependencyInjection_ExtractData(ITestContext context, Method method) {

        System.out.println("Test Name: " + method.getName());
        System.out.println("Extract data from test context");

        String value = (String) context.getAttribute("value");

        System.out.println("String: " + value);

    }
} 

测试输出:

DataDependencyTest1 构造函数

字符串:默认测试名称

DataDependencyTest1 构造函数

字符串:字符串 1

DataDependencyTest1 构造函数

字符串:字符串 2

测试名称:Test_DependencyInjection_GenerateTestData

创建创建测试数据

字符串:字符串 1

将数据添加到当前测试上下文

测试名称:Test_DependencyInjection_GenerateTestData

创建创建测试数据

字符串:字符串 2

将数据添加到当前测试上下文

测试名称:Test_DependencyInjection_ExtractData

从测试上下文中提取数据

字符串:字符串 2

测试名称:Test_DependencyInjection_ExtractData

从测试上下文中提取数据

字符串:字符串 2

现在问题来了……

_ExtractData()每次运行_GenerateTestData()测试方法时,测试都会运行。但是,依赖性测试似乎只在循环的最后一次迭代中运行。

我如何制作这样的测试序列:

Test_DependencyInjection_GenerateTestData——使用“String1”

Test_DependencyInjection_ExtractData——使用“String1”

Test_DependencyInjection_GenerateTestData——使用“String2”

Test_DependencyInjection_ExtractData——使用“String2”

4

2 回答 2

0

将测试添加到单独的组中,并将 group-by-instances 设置为 true。这应该可以解决问题。

于 2014-06-26T06:54:09.163 回答
0

将属性“ group-by-instances ”添加为 testNG xml 的“ true ”并运行它,现在你应该先执行一个类的每个测试,然后再执行另一个类实例

<suite name="Suite">
  <test name="Test" group-by-instances="true">
    <classes>
      <class name="Your.test.class.DependencyTest1"/>
    </classes>
  </test> 
</suite>
于 2017-12-27T09:40:23.817 回答