关闭 TestNG 中的测试输出
我目前正在使用此 XML 文件启动我的测试套件:
<suite name="something">
<test name="generic valid compilation">
<parameter name="isValid" value="true"/>
<parameter name="testGroup" value="generic"/>
<groups>
<run>
<include name="compilation"></include>
<exclude name="module"></exclude>
<exclude name="refinement"></exclude>
<exclude name="specifications"></exclude>
</run>
</groups>
<classes>
<class name="test.TestLauncher"/>
</classes>
</test>
</suite>
并且我正在寻找一种方法来切断 TestNG 似乎默认执行的生成的测试输出文件夹。从 http://reportng.uncommons.org/ 我可以看到
您可能还想禁用 通过设置默认 TestNG 记者 useDefaultListeners 属性 “假”。
这似乎适合我的需要,难道他们的 XML 结构看起来与我的不同吗?
有谁知道如何使用 TestNG 关闭测试输出文件?
谢谢
I am currently launching my suit of tests using this XML file:
<suite name="something">
<test name="generic valid compilation">
<parameter name="isValid" value="true"/>
<parameter name="testGroup" value="generic"/>
<groups>
<run>
<include name="compilation"></include>
<exclude name="module"></exclude>
<exclude name="refinement"></exclude>
<exclude name="specifications"></exclude>
</run>
</groups>
<classes>
<class name="test.TestLauncher"/>
</classes>
</test>
</suite>
and I am looking for a way to cut off the generated test-output folder that TestNG seems to do by default. From http://reportng.uncommons.org/ I can see that
You may also want to disable the
default TestNG reporters by setting
the useDefaultListeners attribute to
"false".
which seems to suit my needs, wouldn't it be the fact that their XML structure seems different than mine.
Does anybody know how to turn the test output files off with TestNG?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您从命令行启动测试,请使用
–useDefaultListeners false
:如果您想以编程方式执行此操作:
If you are starting tests from command line use
–useDefaultListeners false
:If you want to do it programmatically:
就像你说的,只需使用此标志即可关闭默认报告。确切的名称取决于您使用的是命令行、ant 还是 maven。在与您相关的文档中查找此字符串。
Like you said, just use this flag to turn off the default reports. The exact name depends on whether you're using the command line, ant or maven. Look this string up in the documentation that is relevant to you.
我只是事后清理它:
I just clean it afterwards :
在 Eclipse 中,您可以检查该选项以避免它:
视窗 -->偏好设置--> TestNG
禁用默认侦听器
in Eclipse you could check that option to avoid it:
Windows --> Preferences--> TestNG
Disable default listeners