public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            IType expected = new PractitionerLicenseOrOtherIdNumber
            {
                IdNumber       = "1",
                TypeOfIdNumber = new CodedWithExceptions
                {
                    IsSubcomponent = true,
                    Identifier     = "2"
                },
                StateOtherQualifyingInformation = "3",
                ExpirationDate = new DateTime(2020, 4, 4)
            };

            IType actual = new PractitionerLicenseOrOtherIdNumber();

            actual.FromDelimitedString("1^2^3^20200404");

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