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 });