public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new AipSegment
            {
                SetIdAip            = 1,
                SegmentActionCode   = "2",
                PersonnelResourceId = new ExtendedCompositeIdNumberAndNameForPersons[]
                {
                    new ExtendedCompositeIdNumberAndNameForPersons
                    {
                        PersonIdentifier = "3"
                    }
                },
                ResourceType = new CodedWithExceptions
                {
                    Identifier = "4"
                },
                ResourceGroup = new CodedWithExceptions
                {
                    Identifier = "5"
                },
                StartDateTime            = new DateTime(2020, 6, 6, 0, 0, 6),
                StartDateTimeOffset      = 7,
                StartDateTimeOffsetUnits = new CodedWithNoExceptions
                {
                    Identifier = "8"
                },
                Duration      = 9,
                DurationUnits = new CodedWithNoExceptions
                {
                    Identifier = "10"
                },
                AllowSubstitutionCode = new CodedWithExceptions
                {
                    Identifier = "11"
                },
                FillerStatusCode = new CodedWithExceptions
                {
                    Identifier = "12"
                }
            };

            ISegment actual = new AipSegment();

            actual.FromDelimitedString("AIP|1|2|3|4|5|20200606000006|7|8|9|10|11|12");

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