├── .github └── workflows │ └── test-action.yml ├── .gitignore ├── LICENSE ├── NOTES.md ├── README.md ├── Step-GitVersionTag.md ├── Step-GitVersionTag.ps1 ├── _init └── index.js ├── action.ps1 ├── action.yml ├── action_helpers.ps1 ├── docs ├── sample-badges1.png ├── sample-badges2.png ├── sample-checkrun-report1.png ├── sample-checkrun-report2.png ├── sample-checkrun-report3.png ├── sample-failure1.png └── sample-gist-report1.png ├── invoke-pwsh.js ├── package.json ├── tests ├── nunit-csharp-samples │ ├── README.md │ └── syntax │ │ ├── AssertSyntaxTests.cs │ │ └── syntax.csproj ├── rafaelfgx_DotNetTests │ ├── Data │ │ ├── Calculator │ │ │ ├── Calculator.cs │ │ │ └── ICalculator.cs │ │ ├── Data.csproj │ │ ├── Data.csproj.ORIG │ │ └── Entities │ │ │ ├── Customer.cs │ │ │ ├── Order.cs │ │ │ ├── OrderItem.cs │ │ │ └── Product.cs │ ├── MSTest │ │ ├── FakeItEasyTest.cs │ │ ├── MSTest.csproj │ │ ├── MSTest.csproj.ORIG │ │ ├── MoqTest.cs │ │ ├── NBuilderTest.cs │ │ ├── NSubstituteTest.cs │ │ └── RealTest.cs │ └── README.md ├── samples.xunit │ ├── AssertExamples │ │ ├── AssertExamples.csproj │ │ ├── AssertExamples.csproj.ORIG │ │ ├── AsyncExamples.cs │ │ ├── CollectionExample.cs │ │ └── EqualExample.cs │ └── README.md └── tests.sln └── trx-report ├── sample-test-results.ps1 ├── sample-test-results.trx ├── sample-test.results.md ├── trx2md-alt-sample.xsl ├── trx2md.ps1 ├── trx2md.xsl └── vstst-2019.xsd /.github/workflows/test-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/.github/workflows/test-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/README.md -------------------------------------------------------------------------------- /Step-GitVersionTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/Step-GitVersionTag.md -------------------------------------------------------------------------------- /Step-GitVersionTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/Step-GitVersionTag.ps1 -------------------------------------------------------------------------------- /_init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/_init/index.js -------------------------------------------------------------------------------- /action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/action.ps1 -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/action.yml -------------------------------------------------------------------------------- /action_helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/action_helpers.ps1 -------------------------------------------------------------------------------- /docs/sample-badges1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-badges1.png -------------------------------------------------------------------------------- /docs/sample-badges2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-badges2.png -------------------------------------------------------------------------------- /docs/sample-checkrun-report1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-checkrun-report1.png -------------------------------------------------------------------------------- /docs/sample-checkrun-report2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-checkrun-report2.png -------------------------------------------------------------------------------- /docs/sample-checkrun-report3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-checkrun-report3.png -------------------------------------------------------------------------------- /docs/sample-failure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-failure1.png -------------------------------------------------------------------------------- /docs/sample-gist-report1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/docs/sample-gist-report1.png -------------------------------------------------------------------------------- /invoke-pwsh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/invoke-pwsh.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/package.json -------------------------------------------------------------------------------- /tests/nunit-csharp-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/nunit-csharp-samples/README.md -------------------------------------------------------------------------------- /tests/nunit-csharp-samples/syntax/AssertSyntaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/nunit-csharp-samples/syntax/AssertSyntaxTests.cs -------------------------------------------------------------------------------- /tests/nunit-csharp-samples/syntax/syntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/nunit-csharp-samples/syntax/syntax.csproj -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Calculator/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Calculator/Calculator.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Calculator/ICalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Calculator/ICalculator.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Data.csproj -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Data.csproj.ORIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Data.csproj.ORIG -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Entities/Customer.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Entities/Order.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Entities/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Entities/OrderItem.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/Data/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/Data/Entities/Product.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/FakeItEasyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/FakeItEasyTest.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/MSTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/MSTest.csproj -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/MSTest.csproj.ORIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/MSTest.csproj.ORIG -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/MoqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/MoqTest.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/NBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/NBuilderTest.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/NSubstituteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/NSubstituteTest.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/MSTest/RealTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/MSTest/RealTest.cs -------------------------------------------------------------------------------- /tests/rafaelfgx_DotNetTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/rafaelfgx_DotNetTests/README.md -------------------------------------------------------------------------------- /tests/samples.xunit/AssertExamples/AssertExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/AssertExamples/AssertExamples.csproj -------------------------------------------------------------------------------- /tests/samples.xunit/AssertExamples/AssertExamples.csproj.ORIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/AssertExamples/AssertExamples.csproj.ORIG -------------------------------------------------------------------------------- /tests/samples.xunit/AssertExamples/AsyncExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/AssertExamples/AsyncExamples.cs -------------------------------------------------------------------------------- /tests/samples.xunit/AssertExamples/CollectionExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/AssertExamples/CollectionExample.cs -------------------------------------------------------------------------------- /tests/samples.xunit/AssertExamples/EqualExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/AssertExamples/EqualExample.cs -------------------------------------------------------------------------------- /tests/samples.xunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/samples.xunit/README.md -------------------------------------------------------------------------------- /tests/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/tests/tests.sln -------------------------------------------------------------------------------- /trx-report/sample-test-results.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/sample-test-results.ps1 -------------------------------------------------------------------------------- /trx-report/sample-test-results.trx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/sample-test-results.trx -------------------------------------------------------------------------------- /trx-report/sample-test.results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/sample-test.results.md -------------------------------------------------------------------------------- /trx-report/trx2md-alt-sample.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/trx2md-alt-sample.xsl -------------------------------------------------------------------------------- /trx-report/trx2md.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/trx2md.ps1 -------------------------------------------------------------------------------- /trx-report/trx2md.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/trx2md.xsl -------------------------------------------------------------------------------- /trx-report/vstst-2019.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyborg/dotnet-tests-report/HEAD/trx-report/vstst-2019.xsd --------------------------------------------------------------------------------