Ejemplo n.º 1
0
        public void Create_throw_ArgumentNullException_if_items_is_null2()
        {
            var store = new RecipientsStoreInMemory();

            Assert.ThrowsException <ArgumentNullException>(() => store.Create(null));
        }
Ejemplo n.º 2
0
        public void Create_throw_ArgumentNullException_if_items_is_null()
        {
            var store = new RecipientsStoreInMemory();

            store.Create(null);
        }