public void DeleteBodyTypeTest()
 {
     BodyTypeModel target = new BodyTypeModel(); // TODO: Initialize to an appropriate value
     int btid = 0; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.DeleteBodyType(btid);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void InsertBodyTypeTest()
 {
     BodyTypeModel target = new BodyTypeModel(); // TODO: Initialize to an appropriate value
     string bt_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.InsertBodyType(bt_desc, c_by);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void BodyTypeModelConstructorTest()
 {
     BodyTypeModel target = new BodyTypeModel();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }