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.isまたはorg.hamcrest.CoreMatchers.is代わりに試してください。

于 2013-02-12T12:52:56.273 に答える