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.
我正在尝试使用 junit 在 Jbehave 的 AfterScenario 方法中获取场景的状态(即失败、跳过或通过)。我希望它使用它来生成范围报告。
范围报告根据报告的场景步骤跟踪其自己的场景统计信息。
虽然 Extent Reports 不像 Cucumber 那样直接支持 JBehave,但网站上有关于如何直接实现 BDD 样式报告的优秀文档。
我编写了自己的类来实现一个范围报告对象,该对象将故事报告为特征,并处理场景和步骤。
步骤级别的通过/失败/跳过将在步骤级别以及报告的场景级别上报告。