Exemple #1
0
        public void Get_ValueCount_TagMissing_ShouldThrow()
        {
            var tag     = DicomTag.SOPClassesSupported;
            var dataset = new DicomDataset();

            var e = Record.Exception(() => dataset.GetValueCount(tag));

            Assert.IsType <DicomDataException>(e);
        }