From 63502405e10d66a1b6a08b127d348e0568be9a78 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Thu, 13 Jul 2023 18:48:17 +0200 Subject: [PATCH] Fixed bug with WebSocketService sub --- BackendTests/Controllers/GameControllerTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BackendTests/Controllers/GameControllerTests.cs b/BackendTests/Controllers/GameControllerTests.cs index 93d7265..5325506 100644 --- a/BackendTests/Controllers/GameControllerTests.cs +++ b/BackendTests/Controllers/GameControllerTests.cs @@ -21,7 +21,7 @@ public class GameControllerTests [SetUp] public void Setup() { - _webSocketService = Substitute.For(); + _webSocketService = Substitute.For(Substitute.For>()); _actionService = Substitute.For( Substitute.For>(), _webSocketService ); @@ -29,7 +29,7 @@ public class GameControllerTests } [Test] - public void Run() + public void Run_ReturnsSame() { var message = new ActionMessage { Action = (GameAction)(-1), Data = "{\"text\":\"Hello World!\"}" }; var data = Encoding.UTF8.GetBytes(JsonSerializer.Serialize(message)); @@ -37,7 +37,7 @@ public class GameControllerTests var runMethod = _controller.GetType().GetMethod("Run", BindingFlags.Instance | BindingFlags.NonPublic); - if (runMethod is null) Assert.Fail(); + if (runMethod is null) Assert.Fail("Run method not found"); var result = runMethod!.Invoke(_controller, new object[] { wssResult, data });