Eclipse中的classpath、junit.jar和import org.junit语句是独立的吗?

发布于 2024-10-20 08:57:50 字数 310 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安静 2024-10-27 08:57:50

项目构建路径由 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.

婴鹅 2024-10-27 08:57:50

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文