OSX Snow Leopard 上 Eclipse 中的 JUnit 视图
我最近购买了一台 Mac,并尝试在 Eclipse 上进行 junit 测试。我正在使用最新的 Galileo,但由于某种原因,在测试中没有“作为 junit 运行”的选项。我做错了什么?也没有 JUnit 视图面板。然而,我进入“关于 Eclipse”,它说 JUnit 已安装。我还端口安装了junit。
I recently purchased a mac and am trying to get junit tests working on Eclipse. I am using the latest Galileo, but for some reason there is no option to "run as junit" on the tests. What am I doing wrong? There's no JUnit view panel either. However I went into the "About Eclipse" thing and it said JUnit is installed. I also port installed junit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不小心下载了错误的发行版,其中不包含 junit。考虑获取 Java EE 版本 - 它有 junit。
I accidentally downloaded the wrong distribution, which did not contain junit. Consider getting the Java EE edition - it has junit.
你的观点正确吗? JUnits 出现在我面前。
编辑:
您可以尝试打开运行时配置菜单(执行 Run>Run as...)并查看 JUnit 是否显示。如果没有,请尝试运行软件更新并关闭 JUnit。
Are you in the right perspective? JUnits show up for me.
Edit:
You can try opening the runtime configuration menu (do Run>Run as...) and see if JUnit shows up. If not, try running a software update and pull JUnit down.
您的测试项目是否配置为使用正确版本的 junit?检查项目的java构建路径。
另外,您的测试指定是否正确?对 junit 4 等使用 @Test 注释?我几分钟前才遇到这个问题。
Is your test project configured to use the correct version of junit? Check the java build path of the project.
Also are you tests specified correctly? Using the @Test annotation for junit 4 etc? I just hit this problem a few minutes ago.