NetBeans 中的 GWT JUnit 测试
我已经使用 NetBeans 在 GWT 中编写了应用程序。现在我想使用 JUnit 测试我的应用程序。我以前从未使用过 JUnit,但我对其工作原理有基本概念。现在的问题是如何设置基本单元测试来测试我的一些 GWT Widget。我发现这个简单的例子但不知道如何在 NetBeans 中运行它。
I have written application in GWT using NetBeans. Now I want to test my application with JUnit. I have never used JUnit before but I have basic concept of how it works. Now the question is how do I setup basic Unit test to test some of my GWT Widgets. I found THIS simple example but don't know how it can be ran in NetBeans.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有测试文件,请右键单击它并选择“测试文件”,或按 Ctrl+F6。
如果您使用的是 Maven 2 项目,则可以添加 Surefire 插件在打包时自动运行所有测试。
If you have the test file, right click on it and select "Test file", or press Ctrl+F6.
If you are using a Maven 2 project, you can add the Surefire plugin to run all the test automatically when packaging.