我正在尝试使用 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 的限制?