public void DeleteFuelTypeTest() { FuelModel target = new FuelModel(); // TODO: Initialize to an appropriate value int ftid = 0; // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; actual = target.DeleteFuelType(ftid); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void InsertFuelTypeTest() { FuelModel target = new FuelModel(); // TODO: Initialize to an appropriate value string ft_desc = string.Empty; // TODO: Initialize to an appropriate value int c_by = 0; // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; actual = target.InsertFuelType(ft_desc, c_by); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void FuelModelConstructorTest() { FuelModel target = new FuelModel(); Assert.Inconclusive("TODO: Implement code to verify target"); }