Skip to content

Commit

Permalink
deps: Updated the UT dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlendea committed May 17, 2024
1 parent 3bd5807 commit 2495676
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void WhenNormalisingForCK3_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToCK3Charset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

// Hearts of Iron 4 Cities
Expand Down Expand Up @@ -303,7 +303,7 @@ public void WhenNormalisingForHOI4City_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToHOI4CityCharset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

[Test]
Expand Down Expand Up @@ -442,7 +442,7 @@ public void WhenNormalisingForWindow1252_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToWindows1252(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

// Imperator Rome
Expand Down Expand Up @@ -582,7 +582,7 @@ public void WhenNormalisingForImperatorRome_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToImperatorRomeCharset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

[Test]
Expand Down Expand Up @@ -623,7 +623,7 @@ void TestCharsNotOutsideSet(string str, string charset)
charsOutisdeCharset = string.Empty;
}

Assert.AreEqual(string.Empty, charsOutisdeCharset);
Assert.That(charsOutisdeCharset, Is.Empty);
}
}
}

0 comments on commit 2495676

Please sign in to comment.