xUnit.net

xUnit.net

xUnit.net 1.9.1 GUI on Windows
Developer(s) James Newkirk and Brad Wilson
Stable release
2.2 / February 20, 2017 (2017-02-20)
Written in C#
Operating system Microsoft .NET
Type Unit testing tool
License Apache License 2.0
Website github.com/xunit/xunit

xUnit.net is an open source unit testing tool for the .NET framework, written by the original author of NUnit.

Example

Example[1] of an xUnit.net test fixture:

using Xunit;

public class MyTests
{
    [Fact]
    public void MyTest()
    {
        Assert.Equal(4, 2 + 2);
    }
}

After you compile the test, run it in your console:

C:\MyTests\bin\Debug> xunit.console MyTestLibrary.dll
xUnit.net console test runner (64-bit .NET 2.0.50727.0)
Copyright (C) 2007-11 Microsoft Corporation.

xunit.dll:     Version 1.9.1.0
Test assembly: C:\MyTests\bin\Debug\MyTestLibrary.dll

1 total, 0 failed, 0 skipped, took 0.302 seconds

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.