예제 #1
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new VarSegment
            {
                VarianceInstanceId = new EntityIdentifier
                {
                    EntityId = "1"
                },
                DocumentedDateTime     = new DateTime(2020, 2, 2, 0, 0, 2),
                StatedVarianceDateTime = new DateTime(2020, 3, 3, 0, 0, 3),
                VarianceOriginator     = new ExtendedCompositeIdNumberAndNameForPersons[]
                {
                    new ExtendedCompositeIdNumberAndNameForPersons
                    {
                        PersonIdentifier = "4"
                    }
                },
                VarianceClassification = new CodedWithExceptions
                {
                    Identifier = "5"
                },
                VarianceDescription = new string[]
                {
                    "6"
                }
            };

            string expected = "VAR|1|20200202000002|20200303000003|4|5|6";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }
예제 #2
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new VarSegment
            {
                VarianceInstanceId = new EntityIdentifier
                {
                    EntityId = "1"
                },
                DocumentedDateTime     = new DateTime(2020, 2, 2, 0, 0, 2),
                StatedVarianceDateTime = new DateTime(2020, 3, 3, 0, 0, 3),
                VarianceOriginator     = new ExtendedCompositeIdNumberAndNameForPersons[]
                {
                    new ExtendedCompositeIdNumberAndNameForPersons
                    {
                        PersonIdentifier = "4"
                    }
                },
                VarianceClassification = new CodedWithExceptions
                {
                    Identifier = "5"
                },
                VarianceDescription = new string[]
                {
                    "6"
                }
            };

            ISegment actual = new VarSegment();

            actual.FromDelimitedString("VAR|1|20200202000002|20200303000003|4|5|6");

            expected.Should().BeEquivalentTo(actual);
        }
예제 #3
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new VarSegment();
         hl7Segment.FromDelimitedString("VAA|^~&|3|4|5|6");
     });
 }