Skip to content

Reports

Tom Longhurst edited this page Apr 27, 2020 · 3 revisions

This requires that you have BDTest.ReportGenerator installed.

You will need to create a global tear down method that runs after all of your tests, and in that method you need to call BDTestReportGenerator.Generate();

Example in NUnit would be a class like this:

    [SetUpFixture]
    public class TestSetup
    {
        [OneTimeTearDown]
        public void GlobalTeardown()
        {
            BDTestReportGenerator.Generate();
        }
    }

This will generate you reports in your output directory.

Clone this wiki locally