Rename method to be the same as the attribute

This commit is contained in:
Stedoss 2022-10-30 15:13:18 +00:00
parent bfc6d5a073
commit d82d1b0dab
2 changed files with 7 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class VenueServiceTests
private VenueService _venueService;
[SetUp]
public void Setup()
public void SetUp()
{
var builder = new DbContextOptionsBuilder<LeedsBeerQuestDbContext>()
.UseInMemoryDatabase($"VenueServiceTests.{Guid.NewGuid().ToString()}");

View File

@ -0,0 +1,6 @@
namespace LeedsBeerQuest.API.Tests.TestHelpers;
public class ControllerTestHelper
{
}