コード例 #1
0
        public void AddTest()
        {
            Ifd   target = new Ifd();
            Field item   = new Field();

            target.Add(item);
        }
コード例 #2
0
        public void AddNullTest()
        {
            Ifd   target = new Ifd();
            Field item   = null;

            Assert.Throws <ArgumentNullException>(() => target.Add(item));
        }