运行junit时出现异常
class JSONTool {
private static MipLogger logger = MipLogger.getLogger(MIPJsonTool.class);
public Object fetch(String url) {
return invokeEndPoint(url, 2000, new HashMap<String, String>());
}
}
我想测试这个类,下面是测试方法
public void testFetchString() {
JSONTool mipJsonTool = new JSONTool();
JSONTool mipJsonTool1 = Mockito.spy(mipJsonTool);
Mockito.doReturn(new JSONObject()
.put("status", 200))
.when(mipJsonTool1)
.fetch("http://localhost:5000/author");
Object obj = mipJsonTool1.fetch("http://localhost:5000/author");
System.out.println("Done!");
}
运行junit给出以下异常
java.lang.NoClassDefFoundError:
org/apache/logging/log4j/util/ReflectionUtil
Caused by: java.lang.ClassNotFoundException:
org.apache.logging.log4j.util.ReflectionUtil
动漫人物
相关分类