You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples)
257
258
</details>
258
259
260
+
<details>
261
+
<summary>dotnet-nunit</summary>
262
+
263
+
Test execution must be configured to generate [NUnit3](https://docs.nunit.org/articles/nunit/technical-notes/usage/Test-Result-XML-Format.html) XML test results.
264
+
Install the [NUnit3TestAdapter](https://www.nuget.org/packages/NUnit3TestAdapter) package (required; it registers the `nunit` logger for `dotnet test`), then run tests with:
265
+
266
+
`dotnet test --logger "nunit;LogFileName=test-results.xml"`
267
+
268
+
Supported testing frameworks:
269
+
- [NUnit](https://nunit.org/)
270
+
271
+
For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples)
For **unittest** support, use a test runner that outputs the JUnit report format, such as [unittest-xml-reporting](https://pypi.org/project/unittest-xml-reporting/).
367
382
</details>
368
383
384
+
<details>
385
+
<summary>rspec-json</summary>
386
+
387
+
[RSpec](https://rspec.info/) testing framework support requires the usage of JSON formatter.
388
+
You can configure RSpec to output JSON format by using the `--format json` option and redirecting to a file:
0 commit comments