NUnit xml report extension for Visual Studio Test Platform.
Logger | Stable Package | Pre-release Package |
---|---|---|
NUnit |
If you're looking for xunit
or appveyor
loggers, visit following repositories:
NUnit logger can generate xml reports in the NUnit v3 format (https://github.com/nunit/docs/wiki/Test-Result-XML-Format).
- Add a reference to the NUnit Logger nuget package in test project
- Use the following command line in tests
> dotnet test --test-adapter-path:. --logger:nunit
- Test results are generated in the
TestResults
directory relative to thetest.csproj
A path for the report file can be specified as follows:
> dotnet test --test-adapter-path:. --logger:"nunit;LogFilePath=test-result.xml"
test-result.xml
will be generated in the same directory as test.csproj
.
Note: the arguments to --logger
should be in quotes since ;
is treated as a command delimiter in shell.
MIT