Skip to content
This repository has been archived by the owner on Mar 23, 2018. It is now read-only.

elv1s42/NUnitGo

Repository files navigation

IMPORTANT NOTE: this project is no longer maintained! Try using this one: https://github.com/GHPReporter/Ghpr.NUnit

Windows Build status Lisence Information Website NuGet Version and Downloads count Language

NUnitGo

Newest version - 2.1.5, available in Nuget

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 TestClass
{
    [Test, NunitGoAction]
    [Subsciption(Name = "TestSubscriptionName")]
    public void SimpleTest()
    {
        Assert.AreEqual(1, 1);
    }
}