public void ToDelimitedString_WithAllProperties_ReturnsCorrectlySequencedFields()
        {
            IType hl7Type = new TelephoneNumber
            {
                Value = "1"
            };

            string expected = "1";
            string actual   = hl7Type.ToDelimitedString();

            Assert.Equal(expected, actual);
        }