测试在Eclipse中传递但在Gradle中失败。与assertThat相关

时间:2014-06-15 02:25:23

标签: java junit gradle

我有一个在Eclipse中完美运行但在Gradle中失败的测试。我不确定是什么问题。我在Eclipse中使用Java 8.

提示:

E:\Files\Source\Workspace-Eclipse2\project\src\test\java\com\project\core\domain\TeamUnitTest.java:31: error: no sui
table method found for assertThat(List<User>,Matcher<Collection<Object>>)
                assertThat(team.getUsers(), empty());
                ^
    method Assert.<T#1>assertThat(T#1,Matcher<? super T#1>) is not applicable
      (actual argument Matcher<Collection<Object>> cannot be converted to Matcher<? super List<User>> by method invocati
on conversion)
    method Assert.<T#2>assertThat(String,T#2,Matcher<? super T#2>) is not applicable
      (cannot instantiate from arguments because actual and formal argument lists differ in length)
  where T#1,T#2 are type-variables:
    T#1 extends Object declared in method <T#1>assertThat(T#1,Matcher<? super T#1>)
    T#2 extends Object declared in method <T#2>assertThat(String,T#2,Matcher<? super T#2>)
E:\Files\Source\Workspace-Eclipse2\project\src\test\java\com\project\core\domain\TeamUnitTest.java:51: error: no sui
table method found for assertThat(List<User>,Matcher<Collection<Object>>)
                assertThat(team.getUsers(), empty());
                ^
    method Assert.<T#1>assertThat(T#1,Matcher<? super T#1>) is not applicable
      (actual argument Matcher<Collection<Object>> cannot be converted to Matcher<? super List<User>> by method invocati
on conversion)
    method Assert.<T#2>assertThat(String,T#2,Matcher<? super T#2>) is not applicable
      (cannot instantiate from arguments because actual and formal argument lists differ in length)
  where T#1,T#2 are type-variables:
    T#1 extends Object declared in method <T#1>assertThat(T#1,Matcher<? super T#1>)
    T#2 extends Object declared in method <T#2>assertThat(String,T#2,Matcher<? super T#2>)
2 errors
:compileTestJava FAILED

测试代码:

assertThat(team.getUsers(), empty());

1 个答案:

答案 0 :(得分:3)

看起来你的gradle构建并没有像Eclipse那样拉入相同的junit或hamcrest,而是更老的。您应该设置显式依赖项。

如果您将此课程设为src/test/java/SOTest.java

import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;

import java.util.Collections;
import java.util.List;

public class SOTest {
  @Test
  public void doTest() throws Exception {
     // Regular JUnit assert
     assertEquals(true, true);

     // Hamcrest assertThat
     List<Object> teamUsers = Collections.emptyList();
     assertThat(teamUsers, empty());
  }
}

然后使用以下命令创建一个build.gradle文件:

apply plugin: 'java'
sourceCompatibility = 1.6

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.+'
    testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
    testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
}

构建时,assertThat(Collection,empty())的测试将会运行并通过。

这里的区别在于我们明确依赖于junit的新版本,以及带有这些匹配的hamcrest 1.3版本。