我有大约15个JUnit测试用例,每个测试用例需要一个差异资源文件,从中读取必要的输入数据。目前,我在每个测试用例方法中对特定资源文件路径进行硬编码。
@Test
public void testCase1() {
URL url = this.getClass().getResource("/resource1.txt");
// more code here
}
@Test
public void testCase2() {
URL url = this.getClass().getResource("/resource2.txt");
// more code here
}
可能我可以将setUp()
方法中加载的所有这些文件放入单独的URL变量中,然后在每个测试方法中使用特定的URL变量。有没有更好的方法来做到这一点?
答案 0 :(得分:6)
您可以使用TestName
规则。
@Rule public TestName testName = new TestName();
public URL url;
@Before
public void setup() {
String resourceName = testName.getMethodName().substring(4).toLowerCase();
url = getClass().getResource("/" + resourceName + ".txt");
}
@Test
public void testResource1() {
// snip
}
@Test
public void testResource2() {
// snip
}
答案 1 :(得分:1)
尝试JUnit RunWith(Parameterized.class)
。
示例,它采用资源名称和int预期结果:
@RunWith(Parameterized.class)
public class MyTest {
@Parameterized.Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][]{
{"resource1.txt", 0000}, {"resource2.txt", 9999}
});
}
public final URL url;
public final int expected;
public MyTest(String resource, int expected) {
this.url=URL url = this.getClass().getResource("/"+resource)
this.expected = expected;
}
@Before
public void setUp() {
}
@Test
public void testReadResource() throws Exception {
// more code here, based on URL and expected
}
}
此处有更多信息:http://junit.org/apidocs/org/junit/runners/Parameterized.html