开发者

Parameter passed to java command while running JUnit test case

开发者 https://www.devze.com 2022-12-20 02:23 出处:网络
I would like to understand the meaning of the following command,with regards to JUnit: java junit.swingui.TestRunner MoneyTest

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


You're instructing the JRE to run the junit.swingui.TestRunner class and pass it the argument MoneyTest

0

精彩评论

暂无评论...
验证码 换一张
取 消