Skip to content

Commit

Permalink
test: Rename test method
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Aug 25, 2024
1 parent 033f68a commit 49182fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Application.Tests/Maps/LoadTimeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static void OnLoadingMap() { }
}

[TestCaseSource(nameof(ExpectedIntervalCases))]
public void Decrease_WhenIntervalIsNotEqualsToZero_ShouldContinueToDecrease(int expectedInterval)
public void Decrease_WhenLoadTimeIsNotCompleted_ShouldContinueToDecrease(int expectedInterval)
{
// Arrange
var expectedText = $"Loading map... ({expectedInterval})";
Expand Down
2 changes: 1 addition & 1 deletion tests/Application.Tests/Maps/TimeLeftTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void Reset()
}

[TestCaseSource(typeof(DecreaseTimeLeftTestCases))]
public void Decrease_WhenTimeRemainingIsNotZero_ShouldContinueToDecrease(string expectedText)
public void Decrease_WhenTimeRemainingIsNotCompleted_ShouldContinueToDecrease(string expectedText)
{
// Arrange

Expand Down

0 comments on commit 49182fb

Please sign in to comment.