Beispiel #1
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            ISegment expected = new OdsSegment
            {
                Type          = "1",
                ServicePeriod = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "2"
                    }
                },
                DietSupplementOrPreferenceCode = new CodedWithExceptions[]
                {
                    new CodedWithExceptions
                    {
                        Identifier = "3"
                    }
                },
                TextInstruction = new string[]
                {
                    "4"
                }
            };

            ISegment actual = new OdsSegment();

            actual.FromDelimitedString("ODS|1|2|3|4");

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