Skip to content

Commit

Permalink
renamed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad committed Dec 12, 2023
1 parent 23e1be8 commit 6443ca9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ public async Task GetOrdersBySendersReference_GetOrdersBySendersReferenceCalledI
[InlineData(OrderProcessingStatus.Registered, "Order has been registered and is awaiting requested send time before processing.")]
[InlineData(OrderProcessingStatus.Processing, "Order processing is ongoing. Notifications are being generated.")]
[InlineData(OrderProcessingStatus.Completed, "Order processing is completed. All notifications have been generated.")]
public void GetResultDescription_ExpectedDescription(OrderProcessingStatus status, string expected)
public void GetStatusDescription_ExpectedDescription(OrderProcessingStatus status, string expected)
{
string actual = GetOrderService.GetStatusDescription(status);
Assert.Equal(expected, actual);
}

[Fact]
public void GetResultDescription_AllResultTypesHaveDescriptions()
public void GetStatusDescription_AllResultTypesHaveDescriptions()
{
foreach (OrderProcessingStatus statusType in Enum.GetValues(typeof(OrderProcessingStatus)))
{
Expand Down

0 comments on commit 6443ca9

Please sign in to comment.