Eclipse中的classpath、junit.jar和import org.junit语句是独立的吗?
Eclipse 中的 classpath、junit.jar 和 import org.junit 语句是否相互独立? 在 Windows 7(环境)类路径上添加 junit.jar 后,我无法从导入 org.junit.* 中受益; Eclipse for Java 中的语句。 Eclipse 通知无法解析导入 org.junit。这是正常行为吗? 通过使用命令行 (cmd.exe) junit 可以正常工作:
java org.junit.runner.JUnitCore org.junit.tests.AllTests
但是,在 Eclipse 中我无法使用 Junit 类。
Are classpath, junit.jar and import org.junit statement independent of each other in Eclipse?
After adding junit.jar on Windows 7 (environment) classpath I am not able to benefit from importing org.junit.*; statement in Eclipse for Java. Eclipse informs that the import org.junit cannot be resolved. Is it normal behaviour?
By using command line (cmd.exe) junit works fine:
java org.junit.runner.JUnitCore org.junit.tests.AllTests
However, within Eclipse I cannot use Junit classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
项目构建路径由 Eclipse 负责。如果 junit.jar(适当版本)或 JUnit eclipse lib 位于构建路径上,则可以导入 junit 类。如果没有,就不会。类路径环境变量从来都不是一个好主意。
The project build path is in charge in Eclipse. If junit.jar (of appropriate version) or the JUnit eclipse lib are on the build path, you can import junit classes. If not, not. The classpath environment variable is never a good idea.
Eclipse 基于所谓的“构建路径”构建类路径,并使用 -cp 参数调用 JVM。如果显式 -cp jvm 参数传递给 JVM,则 JVM 将忽略 CLASSPATH 环境变量,从而忽略 Windows 类路径设置。
解决方案:正确设置项目构建路径,即。在那里添加你的罐子。
Eclipse builds classpath to based upon what is called a 'build path' and invokes JVM with a -cp argument. JVM ignores CLASSPATH env variable if an explicit -cp jvm arg is passed to it so your Windows classpath setting is ignored.
Solution: set up your project build path correctly ie. add your jars there.