0

这是我的代码

import org.junit.Test;

import static org.junit.Assert.assertThat;
import static sun.nio.cs.Surrogate.is;

public class PlayerTest {
  public void should_return_3_when_status_is_3(){
        Player player = new Player();
        assertThat(player.getStatus(),is(3));
    }
}

这是痕迹

Can't find symbol
符号: method assertThat(int,boolean)
位置: class PlayerTest

我的 iml 文件是

<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
  <component name="NewModuleRootManager" inherit-compiler-output="true">
    <exclude-output />
    <content url="file://$MODULE_DIR$">
      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
      <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
    </content>
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
    <orderEntry type="module-library" scope="TEST">
      <library>
        <CLASSES>
          <root url="jar://$APPLICATION_HOME_DIR$/lib/junit-4.10.jar!/" />
        </CLASSES>
        <JAVADOC />
        <SOURCES />
      </library>
    </orderEntry>
  </component>
</module>

我想我以前用过,但现在不行了。不知道该怎么做。但是 assertTrue 正在工作。正在使用 Ubuntu 11.04。

4

1 回答 1

2

错误在

import static sun.nio.cs.Surrogate.is;

is()应该返回一个匹配器,但不管它是什么,它都会返回布尔值。尝试org.hamcrest.Matchers.isorg.hamcrest.CoreMatchers.is代替。

于 2013-02-12T12:52:56.273 回答