如何使用JBehave正确获取报表?

发布于 2024-11-16 18:07:25 字数 263 浏览 19 评论 0原文

我正在使用 JBehave 来运行场景,我从 WebSite ,它正在正确执行并在 trarget/jbehave 文件夹中生成报告。 但结果每次都显示为零。 (我采取了他在网站上给出的相同示例)

我需要配置其他吗?

I am using JBehave to run Scenarios, i have taken an example from WebSite , it is executing properly and generating reports in trarget/jbehave folder.
but the result is showing every time as zero.
(i have taken same example he given in the website)

i need to configure any other?

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

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

发布评论

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

评论(1

流殇 2024-11-23 18:07:25

最后我发现代码中少了一种格式类型STATS
我们可以使用不同的格式,如 HTML、XML、CONSOLE、IDE_CONSOLE 等。
必须需要 STATS 才能获取报告的统计信息。

StoryReporterBuilder().withFormats( Format.CONSOLE, Format.STATS, Format.HTML )

这将为报告生成统计数据。

At the end, I found that I am missing one of the format type STATS in the code
We can use different Format's like HTML, XML, CONSOLE, IDE_CONSOLE etc..
STATS must be needed to get the Statistics for the Reports.

StoryReporterBuilder().withFormats( Format.CONSOLE, Format.STATS, Format.HTML )

that will generate Statistics for the Reports.

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