Skip to content

Commit

Permalink
tests: Add Person class in a .cs file
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Oct 12, 2023
1 parent ec4d8cc commit d7f9b8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 6 additions & 0 deletions tests/Person.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace SimpleResults.Tests;

public class Person
{
public string Name { get; init; }
}
5 changes: 0 additions & 5 deletions tests/ResultExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ public ResultExtensionsTests()
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
}

private class Person
{
public string Name { get; init; }
}

[Test]
public void ToActionResult_WhenOperationResultIsSuccess_ShouldReturnsOkObjectResult()
{
Expand Down

0 comments on commit d7f9b8b

Please sign in to comment.