单击故障在 HTML 生成的 Junit 报告中不显示任何内容

发布于 2024-12-11 08:45:00 字数 297 浏览 0 评论 0原文

我有一个 Junit html 报告,它是通过 ant 脚本使用生成的。元素。一切看起来都很棒,除了当我尝试查看失败时,适当的框架中没有枚举任何内容。我必须单击测试用例本身来查看所有已测试的方法才能看到失败的情况。这不适用于错误,仅适用于失败。

这是显示问题的屏幕截图。同样,这种情况仅发生在断言失败的情况下,而不会发生在测试中出现意外错误的情况下。

尝试显示所有失败时不会枚举任何失败。

I have a Junit html report that is generated from an ant script with the <junitreport> element. Everything looks great except for when I try to view failures, nothing is enumerated in the appropriate frame. I have to click on the test case itself to view all methods that were tested in order to see the failures. This does not apply to errors, only failures.

Here is a screenshot showing the problem. Again, this only happens with the failed assertions, not with unexpected errors within the tests.

No failures are enumerated when trying to show all failures.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小忆控 2024-12-18 08:45:00

我想通了这个问题。为了正确地使用 Junit4 从 Ant 运行我们的 Junit3 格式的测试,我必须将以下方法添加到每个测试用例中:

public static junit.framework.Test suite() {
        return new junit.framework.JUnit4TestAdapter(SimpleTest.class);
}

这样做的问题是,对于失败和错误,JUnit4TestAdapter 将它们添加为错误。我最终不得不覆盖 Junit4TestAdapterCache.testAsductionFailure(Failure failure) 并确保它运行 result.addFailure(Test, AssertionFailedError) 而不是 result.addError(测试,可抛出)。然后,我必须确保我的自定义运行程序在发生故障(而不是错误)时运行 RunNotifier.fireTestAsductionFailed

I figured out the issue. In order to properly have our Junit3 formatted tests run from Ant using Junit4, I had to add the following method to each of my test cases:

public static junit.framework.Test suite() {
        return new junit.framework.JUnit4TestAdapter(SimpleTest.class);
}

The issue with this is that for both failures and errors, the JUnit4TestAdapter adds them as errors. I ended up having to override Junit4TestAdapterCache.testAssumptionFailure(Failure failure) and make sure that it ran result.addFailure(Test, AssertionFailedError) instead of result.addError(Test, Throwable). I then had to make sure my custom runner ran RunNotifier.fireTestAssumptionFailed when a failure (and not an error) occurred.

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