This runner supports xUnit.net tests for dotnet 4.5.1+, and dotnet Core 5+ (this includes ASP.NET 5+).
To install this package, ensure your project.json contains the following lines:
{
"dependencies": {
"xunit": "2.1.0-*",
"dotnet-test-xunit": "2.1.0-*"
},
"testRunner": "dotnet-test-xunit"
}
To run tests from the command line, use the following.
# Restore NuGet packages
dotnet restore
# Run tests in current directory
dotnet test
# Run tests if tests are not in the current directory
dotnet -p path/to/project test // not yet implemented
For more complete example usage, please see Getting Started with xUnit.net and CoreCLR / ASP.NET 5.