在 Eclipse 中哪里可以找到 JUNIT_CONTAINER 的值?
我需要找出以下路径在哪条路径中得到解析:
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
在Window->Preferences、Java->Build Path->Classpath Variables
下找不到类路径变量。
在哪里可以找到 JUNIT_CONTAINER/4
的值?
谢谢
I need to find out, in which path this following path is resolved:
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
It's no classpath variabl to be found unter Window->Preferences, Java->Build Path->Classpath Variables
.
Where can I found the value von JUNIT_CONTAINER/4
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
类型为“con”的
classpathentry
表示类路径容器。来自 Java 类路径帮助页面:
可以通过 JavaCore 方法getClasspathContainer 和 setClasspathContainer。
因此,在您的情况下,要真正确定解析的路径,您可以通过这些调用查询您自己的项目,如下所示
ClassPathUtils
A
classpathentry
of kind "con" means classpath container.From Java Class Paths help page:
Classpath containers can be manipulated through JavaCore methods getClasspathContainer and setClasspathContainer.
So in your case, to be really sure about the resolved path, you could query your own project through those calls, like this
ClassPathUtils
尝试帮助 -> 关于Eclipse平台-> 配置详细信息。
Try Help -> About Eclipse Platform -> Configuration Details.
一个简单的解决方案是这个 JUnit 测试。
这一定是一个测试,因为 Eclipse 只将所需的库设置到类路径系统属性中:
A simple solution is this little JUnit test.
It must be a test, because Eclipse only sets the needed libraries to the classpath System Property: