public void GetPlantsListShouldPass() { PlantsIndexModel plantsIndexModel = new PlantsIndexModel(); List <PlantModel> list = plantsIndexModel.PlantsList; Assert.AreEqual(list[0].CommonName, "Monstera"); }
public void TestDefaultConstructorShouldPass() { PlantsIndexModel plantsIndexModel = new PlantsIndexModel(); Assert.IsNotNull(plantsIndexModel); }
public IActionResult PlantsIndex() { var plantsIndexModel = new PlantsIndexModel(); return(View(plantsIndexModel)); }