示例#1
0
 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.");
 }
示例#2
0
 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.");
 }
示例#3
0
 public void FuelModelConstructorTest()
 {
     FuelModel target = new FuelModel();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }