public void CreatedOnTest()
 {
     Section target = new Section(); // 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 SectionConstructorTest1()
 {
     Guid sectionId = new Guid(); // TODO: Initialize to an appropriate value
     Section target = new Section(sectionId);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void SectionConstructorTest()
 {
     Section target = new Section();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void WholesaleTest()
 {
     Section target = new Section(); // 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 SummaryTest()
 {
     Section target = new Section(); // 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.");
 }
 public void SectionIdTest()
 {
     Section target = new Section(); // TODO: Initialize to an appropriate value
     Guid expected = new Guid(); // TODO: Initialize to an appropriate value
     Guid actual;
     target.SectionId = expected;
     actual = target.SectionId;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }