/aspnet.xunit

ASP.NET v5+ runner for xUnit.net

Primary LanguageC#

This runner supports xUnit.net tests for DNX 4.5.1+, and DNX Core 5+ (this includes ASP.NET 5+).

Usage

To install this package, ensure your project.json contains the following lines:

{
    "dependencies": {
        "xunit.runner.aspnet": "2.0.0-aspnet-*"
    },
    "commands": {
        "test": "xunit.runner.aspnet"
    }
}

To run tests from the command line, use the following.

# Restore NuGet packages
dnu restore

# Run tests (add "--project" with a folder path if tests are not in the current directory)
dnx test