JUnit测试用例在Eclipse中传递但在gradle中失败

时间:2017-06-29 12:36:19

标签: java eclipse gradle junit

我有一个Junit测试用例,如果我从Eclipse运行 - > Junit,它通过,但如果我做gradle构建,相同的测试用例就会失败。即使做了" Coverage"在Eclipse中,它也失败了。

public void mytest() {
    PowerMockito.mockStatic(JsonConverter.class);
    when(jsonConverter.fromJson()).thenThrow(Some Exception);
    when(jsonConverter.fromJson()).thenCallRealmethod();
    //and some further code
}

0 个答案:

没有答案