diff --git a/__tests__/__snapshots__/dotnet-trx.test.ts.snap b/__tests__/__snapshots__/dotnet-trx.test.ts.snap
index f4053ec..46c8601 100644
--- a/__tests__/__snapshots__/dotnet-trx.test.ts.snap
+++ b/__tests__/__snapshots__/dotnet-trx.test.ts.snap
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
-exports[`dotnet-trx tests matches report snapshot (only failed tests) 1`] = `
+exports[`dotnet-trx tests matches dotnet-trx report snapshot 1`] = `
TestRunResult {
"path": "fixtures/dotnet-trx.trx",
"suites": [
@@ -135,7 +135,7 @@ Actual: False
}
`;
-exports[`dotnet-trx tests matches report snapshot 1`] = `
+exports[`dotnet-trx tests matches report snapshot (only failed tests) 1`] = `
TestRunResult {
"path": "fixtures/dotnet-trx.trx",
"suites": [
diff --git a/__tests__/dotnet-trx.test.ts b/__tests__/dotnet-trx.test.ts
index ede52b0..6ec363e 100644
--- a/__tests__/dotnet-trx.test.ts
+++ b/__tests__/dotnet-trx.test.ts
@@ -39,15 +39,18 @@ describe('dotnet-trx tests', () => {
expect(result.result).toBe('success')
})
- it('matches report snapshot', async () => {
- const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
- const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
+ it.each([
+ ['dotnet-trx'],
+ ['dotnet-xunitv3']
+ ])('matches %s report snapshot', async (reportName) => {
+ const fixturePath = path.join(__dirname, 'fixtures', `${reportName}.trx`)
+ const outputPath = path.join(__dirname, '__outputs__', `${reportName}.md`)
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const opts: ParseOptions = {
parseErrors: true,
- trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.XUnitTests/CalculatorTests.cs']
+ trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.XUnitTests/CalculatorTests.cs', 'DotnetTests.XUnitV3Tests/FixtureTests.cs']
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dotnet/'
}
diff --git a/__tests__/fixtures/dotnet-xunitv3.trx b/__tests__/fixtures/dotnet-xunitv3.trx
new file mode 100644
index 0000000..6bd9c25
--- /dev/null
+++ b/__tests__/fixtures/dotnet-xunitv3.trx
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Exit code indicates failure: '2'. Please refer to https://aka.ms/testingplatform/exitcodes for more information.
+
+
+
+
\ No newline at end of file
diff --git a/package.json b/package.json
index 5705920..19c1674 100644
--- a/package.json
+++ b/package.json
@@ -16,6 +16,7 @@
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
+ "dotnet-xunitv3-fixture": "dotnet run --project reports/dotnet/DotnetTests.XUnitV3Tests/DotnetTests.XUnitV3Tests.csproj --report-trx --report-trx-filename dotnet-xunitv3.trx --results-directory __tests__/fixtures/",
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
"dotnet-nunit-legacy-fixture": "nunit-console.exe reports/dotnet-nunit-legacy/NUnitLegacy.sln --result=__tests__/fixtures/dotnet-nunit-legacy.xml",
"golang-json-fixture": "go test -v -json -timeout 5s ./reports/go | tee __tests__/fixtures/golang-json.json",
diff --git a/reports/dotnet/DotnetTests.NUnitV3Tests/CalculatorTests.cs b/reports/dotnet/DotnetTests.NUnitV3Tests/CalculatorTests.cs
index 9452ae9..a61e000 100644
--- a/reports/dotnet/DotnetTests.NUnitV3Tests/CalculatorTests.cs
+++ b/reports/dotnet/DotnetTests.NUnitV3Tests/CalculatorTests.cs
@@ -40,7 +40,7 @@ namespace DotnetTests.XUnitTests
}
[Test]
- [Timeout(1)]
+ [CancelAfter(1)]
public void Timeout_Test()
{
Thread.Sleep(100);
@@ -58,7 +58,7 @@ namespace DotnetTests.XUnitTests
[TestCase(3)]
public void Is_Even_Number(int i)
{
- Assert.True(i % 2 == 0);
+ Assert.That(i % 2 == 0);
}
}
}
diff --git a/reports/dotnet/DotnetTests.NUnitV3Tests/DotnetTests.NUnitV3Tests.csproj b/reports/dotnet/DotnetTests.NUnitV3Tests/DotnetTests.NUnitV3Tests.csproj
index 932ff5b..c72f99f 100644
--- a/reports/dotnet/DotnetTests.NUnitV3Tests/DotnetTests.NUnitV3Tests.csproj
+++ b/reports/dotnet/DotnetTests.NUnitV3Tests/DotnetTests.NUnitV3Tests.csproj
@@ -1,14 +1,13 @@
- netcoreapp3.1
-
- false
+ net8.0
+ true
-
-
+
+
diff --git a/reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj b/reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj
index 9f5c4f4..07a1cc7 100644
--- a/reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj
+++ b/reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj
@@ -2,6 +2,7 @@
netstandard2.0
+ true
diff --git a/reports/dotnet/DotnetTests.XUnitTests/DotnetTests.XUnitTests.csproj b/reports/dotnet/DotnetTests.XUnitTests/DotnetTests.XUnitTests.csproj
index 22cfd8e..c41d64e 100644
--- a/reports/dotnet/DotnetTests.XUnitTests/DotnetTests.XUnitTests.csproj
+++ b/reports/dotnet/DotnetTests.XUnitTests/DotnetTests.XUnitTests.csproj
@@ -1,16 +1,14 @@
- netcoreapp3.1
-
- false
+ net8.0
+ true
-
-
-
-
+
+
+
diff --git a/reports/dotnet/DotnetTests.XUnitV3Tests/DotnetTests.XUnitV3Tests.csproj b/reports/dotnet/DotnetTests.XUnitV3Tests/DotnetTests.XUnitV3Tests.csproj
new file mode 100644
index 0000000..4536685
--- /dev/null
+++ b/reports/dotnet/DotnetTests.XUnitV3Tests/DotnetTests.XUnitV3Tests.csproj
@@ -0,0 +1,15 @@
+
+
+
+ net8.0
+ exe
+ true
+ true
+
+
+
+
+
+
+
+
diff --git a/reports/dotnet/DotnetTests.XUnitV3Tests/FixtureTests.cs b/reports/dotnet/DotnetTests.XUnitV3Tests/FixtureTests.cs
new file mode 100644
index 0000000..737ab8c
--- /dev/null
+++ b/reports/dotnet/DotnetTests.XUnitV3Tests/FixtureTests.cs
@@ -0,0 +1,27 @@
+using System;
+using Xunit;
+
+namespace DotnetTests.XUnitV3Tests;
+
+public sealed class Fixture : IDisposable
+{
+ public void Dispose()
+ {
+ throw new InvalidOperationException("Failure during fixture disposal");
+ }
+}
+
+public class FixtureTests(Fixture fixture) : IClassFixture
+{
+ [Fact]
+ public void Passing_Test()
+ {
+ Assert.NotNull(fixture);
+ }
+
+ [Fact]
+ public void Failing_Test()
+ {
+ Assert.Null(fixture);
+ }
+}
diff --git a/reports/dotnet/DotnetTests.sln b/reports/dotnet/DotnetTests.sln
index 7c5ff87..9635170 100644
--- a/reports/dotnet/DotnetTests.sln
+++ b/reports/dotnet/DotnetTests.sln
@@ -11,6 +11,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetTests.XUnitTests", "D
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetTests.NUnitV3Tests", "DotnetTests.NUnitV3Tests\DotnetTests.NUnitV3Tests.csproj", "{81023ED7-56CB-47E9-86C5-9125A0873C55}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetTests.XUnitV3Tests", "DotnetTests.XUnitV3Tests\DotnetTests.XUnitV3Tests.csproj", "{D35E65DC-62EF-4612-9FF3-66F5600BFB74}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -29,6 +31,10 @@ Global
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D35E65DC-62EF-4612-9FF3-66F5600BFB74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D35E65DC-62EF-4612-9FF3-66F5600BFB74}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D35E65DC-62EF-4612-9FF3-66F5600BFB74}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D35E65DC-62EF-4612-9FF3-66F5600BFB74}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -36,6 +42,7 @@ Global
GlobalSection(NestedProjects) = preSolution
{F8607EDB-D25D-47AA-8132-38ACA242E845} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
{81023ED7-56CB-47E9-86C5-9125A0873C55} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
+ {D35E65DC-62EF-4612-9FF3-66F5600BFB74} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6ED5543C-74AA-4B21-8050-943550F3F66E}