Skip to content

Commit

Permalink
chore: replace xunit by nunit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZeitler committed Apr 12, 2024
1 parent adac61f commit 1cd8f81
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@
<PackageReference Include="Alba" Version="7.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Npgsql" Version="8.0.2" />
<PackageReference Include="xunit" Version="2.6.4" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Alba;
using AspNetMartenHtmxVsa.IntegrationTests.TestSetup;
using Microsoft.Extensions.Configuration;
using Xunit.Abstractions;

namespace AspNetMartenHtmxVsa.IntegrationTests.IntegrationTestHost;

Expand All @@ -27,7 +26,6 @@ private IntegrationTestHost(IAlbaHost host, TestEventStore eventStore)
}

public static async Task<IAlbaHost> InitializeAsync(
ITestOutputHelper? testOutputHelper = null
)
{
var testEventStore = await TestEventStore.InitializeAsync();
Expand Down
3 changes: 2 additions & 1 deletion src/AspNetMartenHtmxVsa.IntegrationTests/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
namespace AspNetMartenHtmxVsa.IntegrationTests;

[TestFixture]
public class UnitTest1
{
[Fact]
[Test]
public void Test1()
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/AspNetMartenHtmxVsa.IntegrationTests/Usings.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
global using Xunit;
global using NUnit.Framework;

0 comments on commit 1cd8f81

Please sign in to comment.