public void DateTest()
 {
     Milestone target = new Milestone(); // TODO: Initialize to an appropriate value
     DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
     DateTime actual;
     target.Date = expected;
     actual = target.Date.Value;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ConfidenceLevelTest()
 {
     Milestone target = new Milestone(); // TODO: Initialize to an appropriate value
     MilestoneConfidenceLevels expected = new MilestoneConfidenceLevels(); // TODO: Initialize to an appropriate value
     MilestoneConfidenceLevels actual;
     target.ConfidenceLevel = expected;
     actual = target.ConfidenceLevel;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TypeTest()
 {
     Milestone target = new Milestone(); // TODO: Initialize to an appropriate value
     MilestoneTypes expected = new MilestoneTypes(); // TODO: Initialize to an appropriate value
     MilestoneTypes actual;
     target.Type = expected;
     actual = target.Type;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void MilestoneConstructorTest()
 {
     Milestone target = new Milestone();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }