如何运行所有测试用例,即使以前的测试用例也是错误的

时间:2015-07-05 02:59:31

标签: java android junit android-espresso

我刚刚开始试用JUnit。我创建了一些测试用例。但是,当我发现任何错误的测试用例时,测试用例将停止。即使有很多错误的测试用例,我也想完成每个测试用例。

e.g。

assertEquals ( "this test case will be shown", Main.plus ( 1,2 ),3 );
assertEquals ( "this first wrong test case will be shown", Main.plus ( 1, 2 ), 4 );
assertEquals ( "this first wrong test case **won't be shown**", Main.plus ( 1, 2 ), 4 );

我想让第三个案例运行(表明它是错误的)

注意: ErrorCollector规则允许在找到第一个问题后继续执行测试(例如,收集表中所有不正确的行,并立即报告所有行):

此处有更多信息

http://junit.org/apidocs/org/junit/rules/ErrorCollector.html

1 个答案:

答案 0 :(得分:6)

断言不是测试用例。失败的断言将抛出一个异常,如果未被捕获将传播,其余的测试将不会被执行。

您的解决方案是将每个断言放入不同的测试中。

同样是旁注,通常断言的第一个参数是期望值,所以我交换输入。

@Test
public void correctAddition(){
        assertEquals(3, Main.plus(1,2));
}

@Test
public void wrongAddition(){
        //test will fail
        assertEquals(4, Main.plus(1,2));
}

@Test
public void wrongAddition2(){
        //test will also fail
        assertEquals(4, Main.plus(1,2));
}