public void PeriodTest()
 {
     DocxReportCardParser_Accessor target = new DocxReportCardParser_Accessor(); // TODO: Initialize to an appropriate value
     SchoolPeriod expected = null; // TODO: Initialize to an appropriate value
     SchoolPeriod actual;
     target.Period = expected;
     actual = target.Period;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TermsTest()
 {
     DocxReportCardParser_Accessor target = new DocxReportCardParser_Accessor(); // TODO: Initialize to an appropriate value
     IEnumerable<GradingTerm> expected = null; // TODO: Initialize to an appropriate value
     IEnumerable<GradingTerm> actual;
     target.Terms = expected;
     actual = target.Terms;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ReplacePlaceholderTest1()
 {
     DocxReportCardParser_Accessor target = new DocxReportCardParser_Accessor(); // TODO: Initialize to an appropriate value
     string text = string.Empty; // TODO: Initialize to an appropriate value
     Match match = null; // TODO: Initialize to an appropriate value
     string replacement = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.ReplacePlaceholder(text, match, replacement);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TemplateStreamTest()
 {
     DocxReportCardParser_Accessor target = new DocxReportCardParser_Accessor(); // TODO: Initialize to an appropriate value
     MemoryStream expected = null; // TODO: Initialize to an appropriate value
     MemoryStream actual;
     target.TemplateStream = expected;
     actual = target.TemplateStream;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ProcessTextTest()
 {
     DocxReportCardParser_Accessor target = new DocxReportCardParser_Accessor(); // TODO: Initialize to an appropriate value
     string input = string.Empty; // TODO: Initialize to an appropriate value
     ClassEnrollment enrollment = null; // TODO: Initialize to an appropriate value
     IEnumerable<StudentGrade> grades = null; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.ProcessText(input, enrollment, grades);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }