Ejemplo n.º 1
0
        public void AddTest()
        {
            Ifd   target = new Ifd();
            Field item   = new Field();

            target.Add(item);
        }
Ejemplo n.º 2
0
        public void AddNullTest()
        {
            Ifd   target = new Ifd();
            Field item   = null;

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