示例#1
0
        public void SetNext_ValueIsNull_ThrowsException()
        {
            IMagickImage <QuantumType> image = null;

            Assert.Throws <NotSupportedException>(() =>
            {
                image.SetNext(null);
            });
        }