예제 #1
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new Cm2Segment
            {
                SetIdCm2           = 1,
                ScheduledTimePoint = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                DescriptionOfTimePoint       = "3",
                EventsScheduledThisTimePoint = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "4"
                    }
                }
            };

            ISegment actual = new Cm2Segment();

            actual.FromDelimitedString("CM2|1|2|3|4");

            expected.Should().BeEquivalentTo(actual);
        }
예제 #2
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new Cm2Segment();
         hl7Segment.FromDelimitedString("CMA|^~&|3|4|5|6");
     });
 }
예제 #3
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new Cm2Segment
            {
                SetIdCm2           = 1,
                ScheduledTimePoint = new CodedWithExceptions
                {
                    Identifier = "2"
                },
                DescriptionOfTimePoint       = "3",
                EventsScheduledThisTimePoint = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "4"
                    }
                }
            };

            string expected = "CM2|1|2|3|4";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }