如何从 NetBeans 运行所有 JUnit 测试用例?
我已经创建了几个文件,其中包含对 NetBeans 项目中现有类的单元测试。 我使用菜单“文件/新文件/JUnit/测试现有类”来创建测试文件。
我可以通过右键单击一个文件并选择“运行文件”来运行一个带有单元测试的文件。
但我想通过单元测试运行所有文件。 我怎样才能以最简单的方式实现这一目标?
我正在使用 NetBeans 6.5。
I have created several files with unit tests on existing classes in NetBeans project.
I used menu "File/New file/JUnit/Test for Existing Class" to create test files.
I can run one file with unit tests by right click on it and select "Run File".
But I want to run all files with unit tests.
How can I achieve this in the simplest way?
I am using NetBeans 6.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
菜单“运行/测试项目”。
Menu "Run/Test Project".
在 NetBeans 7.1 中,您可以创建一个测试套件,您可以根据需要向其中添加任意数量的 JUnit 测试文件。当您运行该套件时,您将运行该套件中的所有文件。
要创建测试套件,请像其他文件一样创建一个文件:
在主类中添加您的测试类,例如this:
要运行,请在“项目”窗口中右键单击该文件,然后选择“测试文件”。
In NetBeans 7.1 you can create a test suite, to which you can add as many of your JUnit test files as you want. When you run the suite, you run all the files in the suite.
To create the test suite, create a file like any other:
In the main class add your test classes like this:
To run, right click this file in the Projects windows and select Test File.