Skip to content

Commit

Permalink
test: Add more test cases to PlayerInfoTests
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Aug 11, 2024
1 parent 536d47d commit 3a3c0c5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Application.Tests/Players/Accounts/PlayerInfoTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ public void CanMoveUpToNextRank_WhenPlayerHasMaximumRank_ShouldReturnsFalse()
[TestCase(RankId.Advanced, 251)]
[TestCase(RankId.Hitman, 300)]
[TestCase(RankId.Hitman, 301)]
[TestCase(RankId.SuperPro, 700)]
[TestCase(RankId.SuperPro, 701)]
public void CanMoveUpToNextRank_WhenPlayerDoesHaveRequiredKills_ShouldReturnsTrue(RankId currentRank, int kills)
{
// Arrange
Expand All @@ -273,6 +275,8 @@ public void CanMoveUpToNextRank_WhenPlayerDoesHaveRequiredKills_ShouldReturnsTru
[TestCase(RankId.Advanced, 201)]
[TestCase(RankId.Hitman, 250)]
[TestCase(RankId.Hitman, 251)]
[TestCase(RankId.SuperPro, 600)]
[TestCase(RankId.SuperPro, 601)]
public void CanMoveUpToNextRank_WhenPlayerDoesNotHaveRequiredKills_ShouldReturnsFalse(RankId currentRank, int kills)
{
// Arrange
Expand Down

0 comments on commit 3a3c0c5

Please sign in to comment.