Skip to content

Commit

Permalink
More multiplicity fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jas88 committed Mar 18, 2022
1 parent 1f7b062 commit ded09e5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions DicomTypeTranslation.Tests/Helpers/TranslationTestHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ public static DicomDataset BuildVrDataset(DicomVR singleVr = null)
new DicomApplicationEntity(DicomTag.RetrieveAETitle, "AppEntity-1", "AppEntity-2"),
new DicomAgeString(DicomTag.PatientAge, "034Y"),
new DicomAttributeTag(DicomTag.SelectorATValue, DicomTag.SOPInstanceUID, DicomTag.SeriesInstanceUID),
new DicomCodeString(DicomTag.QualityControlImage, "FOOBAR", "OOFRAB"),
new DicomDate(DicomTag.AcquisitionDate, "20000229", "20180401"),
new DicomDecimalString(DicomTag.LossyImageCompressionRatio, "0", "123.456"),
new DicomDateTime(DicomTag.AcquisitionDateTime, "20141231194212", "20180401235959"),
new DicomFloatingPointSingle(DicomTag.SelectorFLValue, 0, float.MinValue, float.MaxValue),
new DicomFloatingPointDouble(DicomTag.SelectorFDValue, 0, double.MinValue, double.MaxValue),
new DicomIntegerString(DicomTag.ImagesInAcquisition, 0, int.MinValue, int.MaxValue),
new DicomCodeString(DicomTag.QualityControlImage, "FOOBAR"),
new DicomDate(DicomTag.AcquisitionDate, "20000229"),
new DicomDecimalString(DicomTag.LossyImageCompressionRatio, "123.456"),
new DicomDateTime(DicomTag.AcquisitionDateTime, "20180401235959"),
new DicomFloatingPointSingle(DicomTag.SelectorFLValue, 0, float.MinValue),
new DicomFloatingPointDouble(DicomTag.SelectorFDValue, 0, double.MinValue),
new DicomIntegerString(DicomTag.ImagesInAcquisition, int.MaxValue),
new DicomLongString(DicomTag.PatientState, "This is a long string part 1", "This is a long string part 2"),
new DicomLongText(DicomTag.AdditionalPatientHistory, @"This is a dicom long string. Backslashes should be ok: \\\\\\"),
new DicomOtherByte(DicomTag.SelectorOBValue, 1, 2, 3, 0, 255),
Expand Down

0 comments on commit ded09e5

Please sign in to comment.