public void CategoryIdTest()
 {
     Category target = new Category(); // TODO: Initialize to an appropriate value
     Guid expected = new Guid(); // TODO: Initialize to an appropriate value
     Guid actual;
     target.CategoryId = expected;
     actual = target.CategoryId;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void CategoryConstructorTest1()
 {
     Guid categoryId = new Guid(); // TODO: Initialize to an appropriate value
     Category target = new Category(categoryId);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void CategoryConstructorTest()
 {
     Category target = new Category();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void WholesaleTest()
 {
     Category target = new Category(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     target.Wholesale = expected;
     actual = target.Wholesale;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TaxClassIDTest()
 {
     Category target = new Category(); // TODO: Initialize to an appropriate value
     DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
     DateTime actual;
     target.TaxClassID = expected;
     actual = target.TaxClassID;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void SummaryTest()
 {
     Category target = new Category(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Summary = expected;
     actual = target.Summary;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }