public void FromDelimitedString_WithIncorrectSegmentId_ThrowsArgumentException() { Assert.Throws <ArgumentException>(() => { ISegment hl7Segment = new AigSegment(); hl7Segment.FromDelimitedString("AIA|^~&|3|4|5|6"); }); }
public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields() { ISegment expected = new AigSegment { SetIdAig = 1, SegmentActionCode = "2", ResourceId = new CodedWithExceptions { Identifier = "3" }, ResourceType = new CodedWithExceptions { Identifier = "4" }, ResourceGroup = new CodedWithExceptions[] { new CodedWithExceptions { Identifier = "5" } }, ResourceQuantity = 6, ResourceQuantityUnits = new CodedWithNoExceptions { Identifier = "7" }, StartDateTime = new DateTime(2020, 8, 8, 0, 0, 8), StartDateTimeOffset = 9, StartDateTimeOffsetUnits = new CodedWithNoExceptions { Identifier = "10" }, Duration = 11, DurationUnits = new CodedWithNoExceptions { Identifier = "12" }, AllowSubstitutionCode = new CodedWithExceptions { Identifier = "13" }, FillerStatusCode = new CodedWithExceptions { Identifier = "14" } }; ISegment actual = new AigSegment(); actual.FromDelimitedString("AIG|1|2|3|4|5|6|7|20200808000008|9|10|11|12|13|14"); expected.Should().BeEquivalentTo(actual); }