public void DeleteColourTest()
 {
     ColourModel target = new ColourModel(); // TODO: Initialize to an appropriate value
     int colourid = 0; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.DeleteColour(colourid);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void GetColoursTest()
 {
     ColourModel target = new ColourModel(); // 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.GetColours(Clauses);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void InsertColourTest()
 {
     ColourModel target = new ColourModel(); // TODO: Initialize to an appropriate value
     string colour_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.InsertColour(colour_desc, c_by);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ColourModelConstructorTest()
 {
     ColourModel target = new ColourModel();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }