Exemplo n.º 1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new QriSegment();
         hl7Segment.FromDelimitedString("QRA|^~&|3|4|5|6");
     });
 }
Exemplo n.º 2
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new QriSegment
            {
                CandidateConfidence = 1,
                MatchReasonCode     = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "2"
                    }
                },
                AlgorithmDescriptor = new CodedWithExceptions
                {
                    Identifier = "3"
                }
            };

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

            Assert.Equal(expected, actual);
        }
Exemplo n.º 3
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new QriSegment
            {
                CandidateConfidence = 1,
                MatchReasonCode     = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "2"
                    }
                },
                AlgorithmDescriptor = new CodedWithExceptions
                {
                    Identifier = "3"
                }
            };

            ISegment actual = new QriSegment();

            actual.FromDelimitedString("QRI|1|2|3");

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