コード例 #1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new LdpSegment();
         hl7Segment.FromDelimitedString("LDA|^~&|3|4|5|6");
     });
 }
コード例 #2
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new LdpSegment
            {
                PrimaryKeyValueLdp = new PersonLocation
                {
                    PointOfCare = new HierarchicDesignator
                    {
                        NamespaceId = "1"
                    }
                },
                LocationDepartment = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                LocationService = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "3"
                    }
                },
                SpecialtyType = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "4"
                    }
                },
                ValidPatientClasses = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "5"
                    }
                },
                ActiveInactiveFlag  = "6",
                ActivationDateLdp   = new DateTime(2020, 7, 7, 0, 0, 7),
                InactivationDateLdp = new DateTime(2020, 8, 8, 0, 0, 8),
                InactivatedReason   = "9",
                VisitingHours       = new VisitingHours[]
                {
                    new VisitingHours
                    {
                        StartDayRange = "10"
                    }
                },
                ContactPhone = new ExtendedTelecommunicationNumber
                {
                    TelephoneNumber = "11"
                },
                LocationCostCenter = new CodedWithExceptions
                {
                    Identifier = "12"
                }
            };

            string expected = "LDP|1|2|3|4|5|6|20200707000007|20200808000008|9|10|11|12";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }