关闭 TestNG 中的测试输出

发布于 2024-11-02 23:09:19 字数 1079 浏览 3 评论 0原文

我目前正在使用此 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

老旧海报 2024-11-09 23:09:19

如果您从命令行启动测试,请使用 –useDefaultListeners false

java org.testng.TestNG –useDefaultListeners false testng.xml

如果您想以编程方式执行此操作:

TestNG testNG = new TestNG();
testNG.setUseDefaultListeners(false);
...

If you are starting tests from command line use –useDefaultListeners false:

java org.testng.TestNG –useDefaultListeners false testng.xml

If you want to do it programmatically:

TestNG testNG = new TestNG();
testNG.setUseDefaultListeners(false);
...
黎夕旧梦 2024-11-09 23:09:19

就像你说的,只需使用此标志即可关闭默认报告。确切的名称取决于您使用的是命令行、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.

网白 2024-11-09 23:09:19

我只是事后清理它:

<plugin>
    <artifactId>maven-clean-plugin</artifactId>
    <version>2.4.1</version>
    <configuration>
        <filesets>
            <fileset>
                <directory>test-output</directory>
                <followSymlinks>false</followSymlinks>
            </fileset>
        </filesets>
    </configuration>
</plugin>

I just clean it afterwards :

<plugin>
    <artifactId>maven-clean-plugin</artifactId>
    <version>2.4.1</version>
    <configuration>
        <filesets>
            <fileset>
                <directory>test-output</directory>
                <followSymlinks>false</followSymlinks>
            </fileset>
        </filesets>
    </configuration>
</plugin>
二货你真萌 2024-11-09 23:09:19

Eclipse 中,您可以检查该选项以避免它:
视窗 -->偏好设置--> TestNG

禁用默认侦听器

in Eclipse you could check that option to avoid it:
Windows --> Preferences--> TestNG

Disable default listeners

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文