dotnet / coreclr.xunit

xUnit.net runner for CoreCLR unit test projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Usage

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

More Information

For more complete example usage, please see Getting Started with xUnit.net and CoreCLR / ASP.NET 5.

About

xUnit.net runner for CoreCLR unit test projects

License:Other


Languages

Language:C# 94.8%Language:PowerShell 3.5%Language:Shell 1.7%