
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
Xml logger for JUnit v5 compliant xml report when test is running with "dotnet test" or "dotnet vstest".
JUnit xml report extension for Visual Studio Test Platform.
| Logger | Stable Package | Pre-release Package |
|---|---|---|
| JUnit |
If you're looking for Nunit or Xunit loggers, please see https://github.com/spekt/testlogger.
The JUnit Test Logger generates xml reports in the Ant Junit Format, which the JUnit 5 repository refers to as the de-facto standard. While the generated xml complies with that schema, it does not contain values in every case. For example, the logger currently does not log any properties. Please refer to a sample file to see an example. If you find that the format is missing data required by your CI/CD system, please open an issue or PR.
To use the logger, follow these steps:
Add a reference to the JUnit Logger nuget package in test project
Use the following command line in tests
> dotnet test --logger:junit
Test results are generated in the TestResults directory relative to the test.csproj
A path for the report file can be specified as follows:
> dotnet test --logger:"junit;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.
The logger also supports Microsoft.Testing.Platform (MTP) with the following command line options:
> dotnet test -- --report-spekt-junit --report-spekt-junit-filename test-result.xml
The --report-spekt-junit option can also accept configuration arguments:
> dotnet test -- --report-spekt-junit "key1=value1;key2=value2"
All common options to the logger are documented in the wiki. E.g.
token expansion for {assembly} or {framework} in result file. If you are writing multiple
files to the same directory or testing multiple frameworks, these options can prevent
test logs from over-writing each other.
There are several options to customize how the junit xml is populated. These options exist to provide additional control over the xml file so that the logged test results can be optimized for different CI/CD systems.
Platform Specific Recommendations:
After the logger name, command line arguments are provided as key/value pairs with the following general format. Note the quotes are required, and key names are case-sensitive.
> dotnet test --test-adapter-path:. --logger:"junit;key1=value1;key2=value2"
This option alters the testcase name attribute. By default, this contains only the method. Class, will add the class to the name. Full, will add the assembly/namespace/class to the method.
We recommend this option for GitLab users.
When set to default, the body of a failure element will contain only the exception which is captured by vstest. Verbose will prepend the body with 'Expected X, Actual Y' similar to how it is displayed in the standard test output. 'Expected X, Actual Y' are normally only contained in the failure message. Additionally, Verbose will include standard output from the test in the failure message.
We recommend this option for GitLab and CircleCI users.
You can use StoreConsoleOutput option to disable any system-out and system-err logs in either testsuite or testcase elements or both. By default, all console outputs are captured. Example usage:
dotnet test --logger:"junit;StoreConsoleOutput=false"
NOTE: test attachments are always emitted in system-out for tests cases even when above option is false or testsuite.
v5.x and later behavior
In v5.x and later, system-out and system-err logs are reported at a per testcase element in the report. Because each test
adapter determines to also emit the console output and errors at test suite level, there may be some duplication for the messages.
v4.x and earlier behavior
Prior to v5.x, console stdout and stderr was reported only in the system-out and system-err elements at testsuite level. This
would concatenate messages from all test results and information messages from adapter.
MIT
FAQs
Xml logger for JUnit v5 compliant xml report when test is running with "dotnet test" or "dotnet vstest".
We found that junitxml.testlogger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.