Example #1
0
        public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            ISegment hl7Segment = new BlcSegment
            {
                BloodProductCode = new CodedWithExceptions
                {
                    Identifier = "1"
                },
                BloodAmount = new CompositeQuantityWithUnits
                {
                    Quantity = 2
                }
            };

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

            Assert.Equal(expected, actual);
        }