Beispiel #1
0
 public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() =>
     {
         ISegment hl7Segment = new TccSegment();
         hl7Segment.FromDelimitedString("TCA|^~&|3|4|5|6");
     });
 }
Beispiel #2
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new TccSegment
            {
                UniversalServiceIdentifier = new CodedWithExceptions
                {
                    Identifier = "1"
                },
                EquipmentTestApplicationIdentifier = new EntityIdentifier
                {
                    EntityId = "2"
                },
                SpecimenSource            = "3",
                AutoDilutionFactorDefault = new StructuredNumeric
                {
                    Comparator = "4"
                },
                RerunDilutionFactorDefault = new StructuredNumeric
                {
                    Comparator = "5"
                },
                PreDilutionFactorDefault = new StructuredNumeric
                {
                    Comparator = "6"
                },
                EndogenousContentOfPreDilutionDiluent = new StructuredNumeric
                {
                    Comparator = "7"
                },
                InventoryLimitsWarningLevel = 8,
                AutomaticRerunAllowed       = "9",
                AutomaticRepeatAllowed      = "10",
                AutomaticReflexAllowed      = "11",
                EquipmentDynamicRange       = new StructuredNumeric
                {
                    Comparator = "12"
                },
                Units = new CodedWithExceptions
                {
                    Identifier = "13"
                },
                ProcessingType = new CodedWithExceptions
                {
                    Identifier = "14"
                },
                TestCriticality = new CodedWithExceptions
                {
                    Identifier = "15"
                }
            };

            ISegment actual = new TccSegment();

            actual.FromDelimitedString("TCC|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15");

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