Skip to content

Commit 2a59c3d

Browse files
committed
Experiment with using TUnit instead of xUnit
Remaining issues * GitHub action: how to replace GitHubActionsTestLogger? See microsoft/testfx#4365 * HTML logger: could not find an equivalent for Microsoft.Testing.Platform * Stryker: currently not supported for Microsoft.Testing.Platform, see stryker-mutator/stryker-net#3094
1 parent e4f48c0 commit 2a59c3d

6 files changed

+115
-138
lines changed

.github/workflows/continuous-integration.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
if: matrix.os == 'ubuntu-latest' && env.CODECOV_TOKEN != ''
6464
uses: codecov/codecov-action@v4
6565
with:
66-
files: coverage/*/coverage.cobertura.xml
66+
files: coverage/*/*.cobertura.xml
6767
token: ${{ env.CODECOV_TOKEN }}
6868
- name: ☂️ Upload coverage report to Codacy
6969
env:
@@ -72,7 +72,7 @@ jobs:
7272
uses: codacy/codacy-coverage-reporter-action@v1
7373
with:
7474
project-token: ${{ env.CODACY_PROJECT_TOKEN }}
75-
coverage-reports: coverage/*/coverage.cobertura.xml
75+
coverage-reports: coverage/*/*.cobertura.xml
7676
- name: 📦 Create NuGet package
7777
run: dotnet pack --no-build --output .
7878
- name: 📤 Upload NuGet package artifact
@@ -84,7 +84,7 @@ jobs:
8484
- name: 👽 Run mutation tests and upload report to Stryker dashboard
8585
env:
8686
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
87-
if: matrix.os == 'ubuntu-latest' && env.STRYKER_DASHBOARD_API_KEY != ''
87+
if: matrix.os == 'DISABLED' && env.STRYKER_DASHBOARD_API_KEY != ''
8888
run: |
8989
dotnet tool restore
9090
dotnet tool run dotnet-stryker --reporter dashboard --open-report:dashboard --version ${GITHUB_REF_NAME} --dashboard-api-key ${{ env.STRYKER_DASHBOARD_API_KEY }}

tests/IndentationSettingsTest.cs

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
using System;
22
using FluentAssertions;
3-
using Xunit;
43

54
namespace Serilog.Formatting.Log4Net.Tests;
65

76
public class IndentationSettingsTest
87
{
9-
[Theory]
10-
[InlineData(Indentation.Space, 2, " ")]
11-
[InlineData(Indentation.Tab, 2, "\t\t")]
12-
[InlineData(Indentation.Space, 4, " ")]
13-
[InlineData(Indentation.Tab, 4, "\t\t\t\t")]
8+
[Test]
9+
[Arguments(Indentation.Space, (byte)2, " ")]
10+
[Arguments(Indentation.Tab, (byte)2, "\t\t")]
11+
[Arguments(Indentation.Space, (byte)4, " ")]
12+
[Arguments(Indentation.Tab, (byte)4, "\t\t\t\t")]
1413
public void IndentationSettingsToString(Indentation indentation, byte size, string expectedString)
1514
{
1615
// Arrange
@@ -23,7 +22,7 @@ public void IndentationSettingsToString(Indentation indentation, byte size, stri
2322
indentationString.Should().Be(expectedString);
2423
}
2524

26-
[Fact]
25+
[Test]
2726
public void InvalidIndentation()
2827
{
2928
// Act
@@ -34,7 +33,7 @@ public void InvalidIndentation()
3433
.Which.Message.Should().StartWith("The value of argument 'indentation' (-1) is invalid for enum type 'Indentation'.");
3534
}
3635

37-
[Fact]
36+
[Test]
3837
public void InvalidSize()
3938
{
4039
// Act

tests/LineEndingTest.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using System;
22
using FluentAssertions;
3-
using Xunit;
43

54
namespace Serilog.Formatting.Log4Net.Tests;
65

76
public class LineEndingTest
87
{
9-
[Fact]
8+
[Test]
109
public void InvalidLineEnding()
1110
{
1211
Action action = () => _ = new Log4NetTextFormatter(c => c.UseLineEnding((LineEnding)4));

0 commit comments

Comments
 (0)