我得到了这样的信息。
com.controller.Test1 > test FAILED
java.lang.NoSuchMethodError at Test1.java:18
测试编译的依赖关系是
testCompile "junit:junit:4.11",
'org.mockito:mockito-all:1.10.19',
'com.jayway.jsonpath:json-path:2.2.0',
'org.hamcrest:hamcrest-all:1.3',
'org.flywaydb.flyway-test-extensions:flyway-dbunit-spring4-test:4.0'
这是我的测试代码。
package com.controller;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
import static org.hamcrest.Matchers.instanceOf;
import static org.junit.Assert.assertThat;
@RunWith(MockitoJUnitRunner.class)
public class Test1 {
@Test
public void test(){
assertThat(Long.valueOf(1), instanceOf(Integer.class));
}
}
我想要这样的信息。
预期:java.lang.Integer的一个实例 但是:< 1L>是一个java.lang.Long
答案 0 :(得分:2)
set
与JUnit无关。相反,它表示编译器类路径上的类的版本与运行时类路径上的类的版本不同。
冲突的原因是JUnit带有自己的java.lang.NoSuchMethodError
类,而不是代码中导入的类。在导入而不是org.hamcrest.Matcher
中使用mockito-core
来排除匹配器。