Info
Version: | 0.8.0 |
Author(s): | boraa |
Last Update: | Friday, October 5, 2018 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/QuickOrBeDead/Labo.DotnetTestResultParser |
NuGet Url: | https://www.nuget.org/packages/dotnet-labodotnettestresultsparser |
Install
Install-Package dotnet-labodotnettestresultsparser
dotnet add package dotnet-labodotnettestresultsparser
paket add dotnet-labodotnettestresultsparser
dotnet-labodotnettestresultsparser Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Usage: dotnet labodotnettestresultsparser [arguments] [options]
Arguments:
path The test result xml path.
Options:
--version Show version information
-?|-h|--help Show help information
-f|--format Unit test result xml format.
Allowed values are: NUnit, XUnit, MsTest. (Default: NUnit)
-o|--output Output file to write results. (Default output is Console)
-t|--template The output template. Allowed values are: Summary, TestResult.
(Default: Summary)
--fail-when-result-is-failed Fails the program when the unit test result is 'Failed'.
Example: dotnet labodotnettestresultsparser <xmlpath> -f NUnit --fail-when-result-is-failed
Example: dotnet labodotnettestresultsparser <xmlpath> -f NUnit -o <output.txt> -t TestResult
Example: dotnet labodotnettestresultsparser /path/*unittest.xml -f NUnit -o <output.txt> -t TestResult
Example: dotnet labodotnettestresultsparser /path/*unittest.xml -f XUnit -o <output.txt> -t TestResult
Example: dotnet labodotnettestresultsparser /path/*unittest.xml -f MsTest -o <output.txt> -t TestResult.