0

http://dist.springsource.org/release/GRECLIPSE/e4.2/から eclipse4.2 用の groovy プラグインをダウンロードし ました。システムに groovy 用の他のインストール/ライブラリはありません。eclipse のマシンでグルーヴィーなプログラムを実行できます。ただし、org.junit.Test をインポートしようとすると、次のエラーが発生します。

Groovy:class org.junit.Test is not an annotation in @org.junit.Test
Groovy:unable to resolve class org.junit.Test

何が問題なのか誰にも教えてもらえますか?

4

1 に答える 1

1

JUnit jar をクラスパスに追加する必要があります。プロジェクトを選択 -> Build Path -> Configure build path... -> Librarires -> Add library -> JUnit -> Next -> JUnit 4 -> OK.

于 2013-06-03T15:43:34.413 に答える