예제 #1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new EduSegment();
         hl7Segment.FromDelimitedString("EDA|^~&|3|4|5|6");
     });
 }
예제 #2
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new EduSegment
            {
                SetIdEdu       = 1,
                AcademicDegree = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                AcademicDegreeProgramDateRange = new DateTimeRange
                {
                    RangeStartDateTime = new DateTime(2020, 3, 3, 0, 0, 3),
                },
                AcademicDegreeProgramParticipationDateRange = new DateTimeRange
                {
                    RangeStartDateTime = new DateTime(2020, 4, 4, 0, 0, 4)
                },
                AcademicDegreeGrantedDate = new DateTime(2020, 5, 5),
                School = new ExtendedCompositeNameAndIdNumberForOrganizations
                {
                    OrganizationName = "6"
                },
                SchoolTypeCode = new CodedWithExceptions
                {
                    Identifier = "7"
                },
                SchoolAddress = new ExtendedAddress
                {
                    StreetAddress = new StreetAddress
                    {
                        StreetOrMailingAddress = "8"
                    }
                },
                MajorFieldOfStudy = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "9"
                    }
                }
            };

            ISegment actual = new EduSegment();

            actual.FromDelimitedString("EDU|1|2|20200303000003|20200404000004|20200505|6|7|8|9");

            expected.Should().BeEquivalentTo(actual);
        }
예제 #3
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new EduSegment
            {
                SetIdEdu       = 1,
                AcademicDegree = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                AcademicDegreeProgramDateRange = new DateTimeRange
                {
                    RangeStartDateTime = new DateTime(2020, 3, 3, 0, 0, 3),
                },
                AcademicDegreeProgramParticipationDateRange = new DateTimeRange
                {
                    RangeStartDateTime = new DateTime(2020, 4, 4, 0, 0, 4)
                },
                AcademicDegreeGrantedDate = new DateTime(2020, 5, 5),
                School = new ExtendedCompositeNameAndIdNumberForOrganizations
                {
                    OrganizationName = "6"
                },
                SchoolTypeCode = new CodedWithExceptions
                {
                    Identifier = "7"
                },
                SchoolAddress = new ExtendedAddress
                {
                    StreetAddress = new StreetAddress
                    {
                        StreetOrMailingAddress = "8"
                    }
                },
                MajorFieldOfStudy = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "9"
                    }
                }
            };

            string expected = "EDU|1|2|20200303000003|20200404000004|20200505|6|7|8|9";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }