Nunitgo

NUnit 3.0 HTML reports

View the Project on GitHub elv1s42/NUnitGo

Windows Build status Build Status NuGet Downloads NuGet Version Issue Count Lisence Information Website

NUnitGo

Creating HTML reports for NUnit tests

Main report page:

Main page screenshot

Tests list page:

Test list page screenshot

Test page:

Test page screenshot

Project Wiki

Click here to read project wiki.

Demo report and Project site

Click here to view demo report (without screenshots).

Click here to visit site.

Usage example

The most simple way to add your test to NUnitGo HTML report is to add NunitGoAction Attribute for your Test method. To receive Emails with test result add Subsciption or SingleTestSubscription Attribute. For more information please read wiki documentation.

[TestFixture]
public class TestClass1
{
    [Test, NunitGoAction]
    [Subsciption(Name = "TestSubscriptionName")]
    public void SimpleTest()
    {
        Assert.AreEqual(1, 1);
    }
}