Exemplo n.º 1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new ZxxSegment();
         hl7Segment.FromDelimitedString("AAA|^~&|3|4|5|6");
     });
 }
Exemplo n.º 2
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new ZxxSegment
            {
                SegmentItems = new IType[]
                {
                    new Text
                    {
                        Value = "1"
                    }
                }
            };

            string expected = "ZXX|1";
            string actual   = hl7Segment.ToDelimitedString();

            Assert.Equal(expected, actual);
        }
Exemplo n.º 3
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new ZxxSegment
            {
                SegmentItems = new IType[]
                {
                    new Text
                    {
                        Value = "1"
                    }
                }
            };

            ISegment actual = new ZxxSegment();

            actual.FromDelimitedString("ZXX|1");

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