public void IsRecipesControllerPostRecipesWithoutImage() { //Arrange RecipeModel recipeAPIModel = new RecipeModel { Name = "Sałatka", Ingredients = new List <string> { "Sałata" }, Instruction = "Pokrój sałatę.", }; //Act var result = _recipesController.PostRecipes(recipeAPIModel); //Assert Assert.Equal("Microsoft.AspNetCore.Mvc.OkResult", result.Result.Result.ToString()); }