我有一个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
}