Skip to content

ymf1/coreclr.xunit

 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 94.8%
  • PowerShell 3.5%
  • Shell 1.7%