<tfoot id='s3r5n'></tfoot>

    <small id='s3r5n'></small><noframes id='s3r5n'>

    <legend id='s3r5n'><style id='s3r5n'><dir id='s3r5n'><q id='s3r5n'></q></dir></style></legend>
    <i id='s3r5n'><tr id='s3r5n'><dt id='s3r5n'><q id='s3r5n'><span id='s3r5n'><b id='s3r5n'><form id='s3r5n'><ins id='s3r5n'></ins><ul id='s3r5n'></ul><sub id='s3r5n'></sub></form><legend id='s3r5n'></legend><bdo id='s3r5n'><pre id='s3r5n'><center id='s3r5n'></center></pre></bdo></b><th id='s3r5n'></th></span></q></dt></tr></i><div id='s3r5n'><tfoot id='s3r5n'></tfoot><dl id='s3r5n'><fieldset id='s3r5n'></fieldset></dl></div>

        • <bdo id='s3r5n'></bdo><ul id='s3r5n'></ul>
      1. TestNG:一个@Test 有多个@DataProvider

        时间:2023-10-01

          <tbody id='bJdMb'></tbody>

        <small id='bJdMb'></small><noframes id='bJdMb'>

            <tfoot id='bJdMb'></tfoot>
          1. <legend id='bJdMb'><style id='bJdMb'><dir id='bJdMb'><q id='bJdMb'></q></dir></style></legend>
            <i id='bJdMb'><tr id='bJdMb'><dt id='bJdMb'><q id='bJdMb'><span id='bJdMb'><b id='bJdMb'><form id='bJdMb'><ins id='bJdMb'></ins><ul id='bJdMb'></ul><sub id='bJdMb'></sub></form><legend id='bJdMb'></legend><bdo id='bJdMb'><pre id='bJdMb'><center id='bJdMb'></center></pre></bdo></b><th id='bJdMb'></th></span></q></dt></tr></i><div id='bJdMb'><tfoot id='bJdMb'></tfoot><dl id='bJdMb'><fieldset id='bJdMb'></fieldset></dl></div>
                • <bdo id='bJdMb'></bdo><ul id='bJdMb'></ul>
                • 本文介绍了TestNG:一个@Test 有多个@DataProvider的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在为 Eclipse 使用 TestNG.

                  是否可以逐步将两个数据提供者提供给相同的测试功能?

                  Is it possible to give two data providers step by step to the same test-function?

                  我可以将两个提供商合二为一,但这不是我想要的.

                  I could put both providers in one, but that is not what I want.

                  我需要(不像本例那样)独立生成数据.

                  I need (not like in this example) to generate independently data.

                  @DataProvider(name = "dataSet1")
                  public Object[][] createDataX() {
                      return new Object[][] { { 1, 1 }, { 2, 2 } };
                  }
                  
                  @DataProvider(name = "dataSet2")
                  public Object[][] createDataY() {
                      return new Object[][] { { 0, 0 }, { 3, 3 } };
                  }
                  

                  我想让两个提供者都接受相同的测试.这可能吗?

                  I want to give both providers to the same test. Is this possible?

                  @Test(dataProvider = "dataSet1") // ??? and "dataSet2" ???
                  public void testThisFunction(int val1, int val2) {
                      boolean solution = oracle(val1,val2);
                      assert (solution);
                  }
                  

                  推荐答案

                  不,但没有什么能阻止您将这两个数据提供者合并为一个并将其指定为您的数据提供者:

                  No, but nothing stops you from merging these two data providers into one and specifying that one as your data provider:

                  public Object[][] dp1() {
                    return new Object[][] {
                        new Object[] { "a", "b" },
                        new Object[] { "c", "d" },
                    };
                  }
                  
                  public Object[][] dp2() {
                    return new Object[][] {
                        new Object[] { "e", "f" },
                        new Object[] { "g", "h" },
                    };
                  }
                  
                  @DataProvider
                  public Object[][] dp() {
                    List<Object[]> result = Lists.newArrayList();
                    result.addAll(Arrays.asList(dp1()));
                    result.addAll(Arrays.asList(dp2()));
                    return result.toArray(new Object[result.size()][]);
                  }
                  
                  @Test(dataProvider = "dp")
                  public void f(String a, String b) {
                    System.out.println("f " + a + " " + b);
                  }
                  

                  这篇关于TestNG:一个@Test 有多个@DataProvider的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:为 Web 应用程序选择 java 自动化测试工具 下一篇:TestNG 依赖于不同类的方法

                  相关文章

                  最新文章

                  <tfoot id='3G9v3'></tfoot>
                • <small id='3G9v3'></small><noframes id='3G9v3'>

                  <legend id='3G9v3'><style id='3G9v3'><dir id='3G9v3'><q id='3G9v3'></q></dir></style></legend>
                    <bdo id='3G9v3'></bdo><ul id='3G9v3'></ul>

                      <i id='3G9v3'><tr id='3G9v3'><dt id='3G9v3'><q id='3G9v3'><span id='3G9v3'><b id='3G9v3'><form id='3G9v3'><ins id='3G9v3'></ins><ul id='3G9v3'></ul><sub id='3G9v3'></sub></form><legend id='3G9v3'></legend><bdo id='3G9v3'><pre id='3G9v3'><center id='3G9v3'></center></pre></bdo></b><th id='3G9v3'></th></span></q></dt></tr></i><div id='3G9v3'><tfoot id='3G9v3'></tfoot><dl id='3G9v3'><fieldset id='3G9v3'></fieldset></dl></div>