コード例 #1
0
 public void DeleteRowTest()
 {
     CarBuildController target = new CarBuildController(); // TODO: Initialize to an appropriate value
     int RowIndex = 0; // TODO: Initialize to an appropriate value
     target.DeleteRow(RowIndex);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
コード例 #2
0
 public void CountMakeTypeTest()
 {
     CarBuildController target = new CarBuildController(); // TODO: Initialize to an appropriate value
     string WildCard = string.Empty; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.CountMakeType(WildCard);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #3
0
 public void GetMakeTypeTest()
 {
     CarBuildController target = new CarBuildController(); // TODO: Initialize to an appropriate value
     DataTable expected = null; // TODO: Initialize to an appropriate value
     DataTable actual;
     actual = target.GetMakeType();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #4
0
 public void CarBuildControllerConstructorTest()
 {
     CarBuildController target = new CarBuildController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #5
0
 public void UpdateRowTest()
 {
     CarBuildController target = new CarBuildController(); // TODO: Initialize to an appropriate value
     string MakeName = string.Empty; // TODO: Initialize to an appropriate value
     int UpdateBy = 0; // TODO: Initialize to an appropriate value
     int RowIndex = 0; // TODO: Initialize to an appropriate value
     target.UpdateRow(MakeName, UpdateBy, RowIndex);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }