Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 JBehave 运行场景,我从WebSite中获取了一个示例,它正在正确执行并在 trarget/jbehave 文件夹中生成报告。但结果每次都显示为零。(我采取了他在网站上给出的相同示例)
我需要配置其他吗?
最后,我发现我在代码中缺少一种格式类型 STATS 我们可以使用不同的格式,如 HTML、XML、CONSOLE、IDE_CONSOLE 等。必须需要 STATS 才能获取报告的统计信息。
StoryReporterBuilder().withFormats( Format.CONSOLE, Format.STATS, Format.HTML )
这将为报告生成统计信息。