Skip to content

Commit 870b762

Browse files
authored
remove fluent assertions (#5)
2 parents a838519 + 6242a97 commit 870b762

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

Directory.Packages.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
1212
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.14.0" />
1313
<PackageVersion Include="NSubstitute" Version="5.3.0" />
14-
<PackageVersion Include="FluentAssertions" Version="7.0.0-alpha.2" />
1514
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1615
<PackageVersion Include="xunit" Version="2.9.2" />
1716
<PackageVersion Include="xunit.runner.console" Version="2.9.2">

tests/MyCSharp.HttpClientHints.AspNetCore.UnitTests/MyCSharp.HttpClientHints.AspNetCore.UnitTests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
</PropertyGroup>
66

77
<ItemGroup Label="NuGet">
8-
<PackageReference Include="FluentAssertions" />
98
<PackageReference Include="Microsoft.NET.Test.Sdk" />
109
<PackageReference Include="NSubstitute" />
1110
<PackageReference Include="xunit" />

tests/MyCSharp.HttpClientHints.UnitTests/HttpClientHintsInterpreterTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Copyright © myCSharp.de - all rights reserved
22

3-
using FluentAssertions;
43
using Xunit;
54

65
namespace MyCSharp.HttpClientHints.UnitTests;
@@ -21,6 +20,6 @@ public void IsMobile_ShouldReturnExpectedResult_ForGivenInput(string? input, boo
2120
bool? result = HttpClientHintsInterpreter.IsMobile(input);
2221

2322
// Assert
24-
result.Should().Be(expectedResult);
23+
Assert.Equal(expectedResult, result);
2524
}
2625
}

tests/MyCSharp.HttpClientHints.UnitTests/MyCSharp.HttpClientHints.UnitTests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
</PropertyGroup>
66

77
<ItemGroup Label="NuGet">
8-
<PackageReference Include="FluentAssertions" />
98
<PackageReference Include="Microsoft.NET.Test.Sdk" />
109
<PackageReference Include="NSubstitute" />
1110
<PackageReference Include="xunit" />

0 commit comments

Comments
 (0)