public void Create_throw_ArgumentNullException_if_T_null2() { var store = new RecipientStoreInMemory(); Assert.ThrowsException <ArgumentNullException>(() => store.Create(null)); }
public void Create_throw_ArgumentNullException_if_T_null() { var store = new RecipientStoreInMemory(); store.Create(null); }