运行 JUnit 测试用例时传递给 java 命令的参数
我想了解以下命令对于 JUnit 的含义:
java junit.swingui.TestRunner MoneyTest
上面的命令在 JUnit Swing GUI 中打开测试用例的结果。将 junit.swingui.TestRunner 作为参数传递给 java 命令有何意义?
谢谢
I would like to understand the meaning of the following command,with regards to JUnit:
java junit.swingui.TestRunner MoneyTest
The above command opens up the result of the testcase in JUnit Swing GUI. Whats the meaning of passing junit.swingui.TestRunner to the java command as a parameter ?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您指示 JRE 运行
junit.swingui.TestRunner
类并向其传递参数 MoneyTestYou're instructing the JRE to run the
junit.swingui.TestRunner
class and pass it the argument MoneyTest