From d82d1b0dabf7e0d322988bef5c6f99fd4b308abe Mon Sep 17 00:00:00 2001 From: Stedoss <29103029+Stedoss@users.noreply.github.com> Date: Sun, 30 Oct 2022 15:13:18 +0000 Subject: [PATCH] Rename method to be the same as the attribute --- .../Data/Services/VenueServiceTests.cs | 2 +- .../TestHelpers/ControllerTestHelper.cs | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/TestHelpers/ControllerTestHelper.cs diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/Data/Services/VenueServiceTests.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/Data/Services/VenueServiceTests.cs index 08b1d17..569a08d 100644 --- a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/Data/Services/VenueServiceTests.cs +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/Data/Services/VenueServiceTests.cs @@ -16,7 +16,7 @@ public class VenueServiceTests private VenueService _venueService; [SetUp] - public void Setup() + public void SetUp() { var builder = new DbContextOptionsBuilder() .UseInMemoryDatabase($"VenueServiceTests.{Guid.NewGuid().ToString()}"); diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/TestHelpers/ControllerTestHelper.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/TestHelpers/ControllerTestHelper.cs new file mode 100644 index 0000000..738b87e --- /dev/null +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API.Tests/TestHelpers/ControllerTestHelper.cs @@ -0,0 +1,6 @@ +namespace LeedsBeerQuest.API.Tests.TestHelpers; + +public class ControllerTestHelper +{ + +} \ No newline at end of file