所需插件“org.eclipse.pde.junit.runtime”找不到
我正在使用 Eclipse Indigo,需要使用 Junit PDE 来测试我的插件功能。我安装了 Junit 和这两个插件:
但是当我尝试时运行我的测试用例(运行 -> 运行配置 -> JUnit 插件测试)我不断收到以下错误: 所需的插件 'org.eclipse.pde.junit.runtime' 可能找不到。
如果有人能告诉我还需要什么,或者我做错了什么,我将不胜感激。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过转到“帮助”->“关于 Eclipse”、“安装详细信息”,然后在“插件”选项卡(“插件 ID”列)中找到该插件来检查是否安装了 org.eclipse.pde.junit.runtime。如果不存在,您可以从 Eclipse 更新站点安装它。如果存在,那么您的安装已损坏,最好从头开始重新安装 Indigo PDE。
You can check if you have the org.eclipse.pde.junit.runtime installed by going to Help->About Eclipse, Installation Details, then finding the plugin in the Plug-ins tab (column Plug-In Id). If it's not there, you can install it from the Eclipse update site. If it is there, then you have a correupted installation, and it's probably a good idea to restart from scratch with a new installation of the Indigo PDE.
它看起来是不是有点像正确的目标平台在 Eclipse Indigo 中运行 JUnit 插件测试?
您能与我们分享您的
.launch
-config 吗? “启动前验证”是否出现任何错误?您是否在构建路径中设置了正确的 JUnit 依赖项?据我所知,junit.runtime
指的是 JUnit 3。令我有点惊讶的是,您必须安装 JUnit——如果您使用标准 Eclipse JDT,则 JUnit 已包含在内。你到底做了什么?
Does it look a bit like Right target platform for running JUnit plugin tests in Eclipse Indigo?
Could you share your
.launch
-config with us? Does "Validate before launch" give any error? Did you setup the correct JUnit-dependencies in the build-path? As far as I know,junit.runtime
refers to JUnit 3.What surprises me a bit is that you had to install JUnit---if you're using the standard Eclipse JDT, JUnit is included. What did you do exactly?