8

我正在尝试使用 JunitParams 来参数化我的测试。但我的主要问题是参数是带有特殊字符、波浪号或管道的字符串。

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;

import junitparams.JUnitParamsRunner;
import junitparams.Parameters;

@RunWith(JUnitParamsRunner.class)
public class TheClassTest {

    @Rule
    public ExpectedException exception = ExpectedException.none();

     @Test
     @Parameters({"AA~BBB"})
     public void shouldTestThemethod(String value) throws Exception {
        exception.expect(TheException.class);

        TheClass.theMethod(value);     
        // Throw an exception if value like "A|B" or "A~B",
        // ie if value contain a ~ or a |
    }
}

使用波浪号,我没有问题。但是对于管道,我有一个例外:

java.lang.IllegalArgumentException: wrong number of arguments

管道,作为逗号,用作参数的分隔符。

我有什么办法可以设置不同的分隔符吗?还是这是 JunitParams 的限制?

4

3 回答 3

6

您确实可以使用双反斜杠转义管道:

@Parameters("AA\\|BBB")
public void test(String value)
于 2017-09-27T13:45:52.557 回答
4

我没有找到配置分隔符的选项,但如果您在Object[][].

考虑以下示例:

public static Object[][] provideParameters() {
   return new Object[][] {
        new Object[] {"A,B|C"}
    };
}

两者,|可以直接使用,这显着提高了测试的可读性。

@Parameters(method = "provideParameters")使用此测试工厂注释您的测试。您甚至可以将工厂移动到另一个类(例如,@Parameters(source = Other.class, method = "provideParameters"))。

于 2016-08-12T14:08:15.913 回答
1

你可以检查zohhak。它类似于 junit 参数,但在解析参数方面为您提供了更大的灵活性。看起来它可能有助于处理“难以阅读”的参数。文档中的示例:

@TestWith(value="7 | 19, 23", separator="[\\|,]")
public void mixedSeparators(int i, int j, int k) {
    assertThat(i).isEqualTo(7);
    assertThat(j).isEqualTo(19);
    assertThat(k).isEqualTo(23);
}

@TestWith(value=" 7 = 7 > 5 => true", separator="=>")
public void multiCharSeparator(String string, boolean bool) {
    assertThat(string).isEqualTo("7 = 7 > 5");
    assertThat(bool).isTrue();
}
于 2015-09-26T10:54:27.990 回答