Exemplo n.º 1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new OrgSegment();
         hl7Segment.FromDelimitedString("ORA|^~&|3|4|5|6");
     });
 }
Exemplo n.º 2
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new OrgSegment
            {
                SetIdOrg             = 1,
                OrganizationUnitCode = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                OrganizationUnitTypeCode = new CodedWithExceptions
                {
                    Identifier = "3"
                },
                PrimaryOrgUnitIndicator       = "4",
                PractitionerOrgUnitIdentifier = new ExtendedCompositeIdWithCheckDigit
                {
                    IdNumber = "5"
                },
                HealthCareProviderTypeCode = new CodedWithExceptions
                {
                    Identifier = "6"
                },
                HealthCareProviderClassificationCode = new CodedWithExceptions
                {
                    Identifier = "7"
                },
                HealthCareProviderAreaOfSpecializationCode = new CodedWithExceptions
                {
                    Identifier = "8"
                },
                EffectiveDateRange = new DateTimeRange
                {
                    RangeStartDateTime = new DateTime(2020, 9, 9, 0, 0, 9)
                },
                EmploymentStatusCode = new CodedWithExceptions
                {
                    Identifier = "10"
                },
                BoardApprovalIndicator        = "11",
                PrimaryCarePhysicianIndicator = "12",
                CostCenterCode = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "13"
                    }
                }
            };

            ISegment actual = new OrgSegment();

            actual.FromDelimitedString("ORG|1|2|3|4|5|6|7|8|20200909000009|10|11|12|13");

            expected.Should().BeEquivalentTo(actual);
        }