eclipse3.2.1 + junit4

环境:gentoo, eclipse-3.2.1
在eclipse中执行TestCase(使用junit-3.8.1.jar)时,出现如下错误:
引用
Cannot find 'org.junit.Test' on project build path. JUnit 4 tests can only be run if JUnit 4 is on the build path.


换用junit-4.5.jar,结果还是不幸:
引用
An internal error occurred during: "Launching".


经过一番折腾,无意发现了解决方法:
我安装eclipse-sdk-3.3.1.1-r2后,然后copy eclipse-3.3/plugins 目录下的 org.eclipse.jdt.junit4.runtime*.jar 到eclipse-3.2/plugins/
cp /usr/lib/eclipse-3.3/plugins/org.eclipse.jdt.junit4.runtime_1.0.100.v20070606-0010.jar 
/usr/lib/eclipse-3.2/plugins


原理不明

你可能感兴趣的:(eclipse,JUnit)