Skip to content

T0mJones/NUnitGo

 
 

Repository files navigation

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

NUnitGo

NUnit 3.0 HTML reports

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.

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

About

NUnit 3.0 HTML reports with screenshots. Useful for UI-tests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%