Plugin for Reqnroll that produces documentation of the tests in form of markdown
Add the interface IRequirementReportOutputHelper i the constructor to get access to a report
//Constructor
public AnyStepDefinitions(IReqnrollOutputHelper testOutput, IRequirementReportOutputHelper requirementReport)
{
_requirementReport = requirementReport ?? throw new ArgumentNullException(nameof(requirementReport));
}
_requirementReport.AddContent("Indata", json, "json");
RequirementReport.AddLog("Log");
Pull Requests are appreciated :-) Source code lives in repository: https://github.com/Tylland/Reqnreport