xUnit.net
This article is about the xUnit.net software. For all unit-testing frameworks like '_Unit', see xUnit.
xUnit.net 1.9.1 GUI on Windows | |
Developer(s) | James Newkirk and Brad Wilson |
---|---|
Stable release |
2.1
/ September 27, 2015 |
Written in | C# |
Operating system | Microsoft .NET |
Type | Unit testing tool |
License | Apache License 2.0 |
Website |
github |
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
External links
This article is issued from Wikipedia - version of the 5/27/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.