Example #1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new EcrSegment();
         hl7Segment.FromDelimitedString("ECA|^~&|3|4|5|6");
     });
 }
Example #2
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new EcrSegment
            {
                CommandResponse = new CodedWithExceptions
                {
                    Identifier = "1"
                },
                DateTimeCompleted         = new DateTime(2020, 2, 2, 0, 0, 2),
                CommandResponseParameters = new Text[]
                {
                    new Text
                    {
                        Value = "3"
                    }
                }
            };

            string expected = "ECR|1|20200202000002|3";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }
Example #3
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new EcrSegment
            {
                CommandResponse = new CodedWithExceptions
                {
                    Identifier = "1"
                },
                DateTimeCompleted         = new DateTime(2020, 2, 2, 0, 0, 2),
                CommandResponseParameters = new Text[]
                {
                    new Text
                    {
                        Value = "3"
                    }
                }
            };

            ISegment actual = new EcrSegment();

            actual.FromDelimitedString("ECR|1|20200202000002|3");

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