1

在下面的代码中,我想TestMethod1用标有的参数运行@Parameters

    @RunWith(Parameterized.class)
public class Foo{

private boolean input;
private boolean expected;

public Foo(boolean input, boolean expected{
this.input=input;
this.expected=expected;
}

@Parameters
public static List<Object[]> data() {
        return Arrays.asList(new Object[][]{{false, false}, {false, false}});
    }

@Test
public void TestMethod1(){
assertEquals(expected, Baar.StaticMethod(input);
}

@Test
public void TestMethod2(){
assertEquals(expected, Baar.StaticMethod2(false);
}

问题是当我运行 junittes 时,TestMethod1 和 TestMethod2 方法都使用这些参数运行。如何告诉测试运行者只运行带有@Parameters 标记的参数的TestMethod1?

4

1 回答 1

0

不确定纯 junit 是否允许,但有很多插件。在您的情况下(所有参数都预先知道),最简单的方法是使用 zohhak 进行参数化测试

@RunWith(ZohhakRunner.class)
public class TestMyClass {      

    @TestWith({
        "true, false".
        "false, true"
    })
    public void test1(int actual, int expected) { //test }

    @TestWith({
        "false, false".
        "true, true"
    })
    public void test2(int actual, int expected) { //test }

    @Test
    public void test3() { //test }
}

如果您需要在运行时构建参数(生成,从文件读取等),那么您可以检查junit-dataproviderjunit-params

于 2015-09-23T11:10:18.053 回答