Exemplo n.º 1
0
 public void DeleteRowTest()
 {
     CarModelModel target = new CarModelModel(); // TODO: Initialize to an appropriate value
     int mmid = 0; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.DeleteRow(mmid);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 2
0
 public void GetCarModelsTest()
 {
     CarModelModel target = new CarModelModel(); // TODO: Initialize to an appropriate value
     string Clauses = string.Empty; // TODO: Initialize to an appropriate value
     DataTable expected = null; // TODO: Initialize to an appropriate value
     DataTable actual;
     actual = target.GetCarModels(Clauses);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 3
0
 public void InsertRowTest()
 {
     CarModelModel target = new CarModelModel(); // TODO: Initialize to an appropriate value
     int mm_cmid = 0; // TODO: Initialize to an appropriate value
     string mm_name = 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.InsertRow(mm_cmid, mm_name, c_by);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 4
0
 public void CarModelModelConstructorTest()
 {
     CarModelModel target = new CarModelModel();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }