public void CreatedOnTest()
 {
     ProductType target = new ProductType(); // TODO: Initialize to an appropriate value
     DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
     DateTime actual;
     target.CreatedOn = expected;
     actual = target.CreatedOn;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ProductTypeConstructorTest1()
 {
     Guid productTypeId = new Guid(); // TODO: Initialize to an appropriate value
     ProductType target = new ProductType(productTypeId);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void TaxClassIdTest()
 {
     ProductType target = new ProductType(); // TODO: Initialize to an appropriate value
     Guid expected = new Guid(); // TODO: Initialize to an appropriate value
     Guid actual;
     target.TaxClassId = expected;
     actual = target.TaxClassId;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ProductTypeConstructorTest()
 {
     ProductType target = new ProductType();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void DisplayOrderTest()
 {
     ProductType target = new ProductType(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.DisplayOrder = expected;
     actual = target.DisplayOrder;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }