public void NewGame_AddNewGame_ReturnsOKdResult() { // Act var okResult = _ludoController.NewGame(); // Assert Assert.IsType <OkObjectResult>(okResult.Result); }
static void Main(string[] args) { LudoController.NewGame(); Console.WriteLine("Hello World!"); }