Exemplo n.º 1
0
        public void GivenNewAccount_WhenInsert_ThenSendEmail()
        {
            //ARRANGE
            mockmail.Expect(x => x.Send("", "", "")).IgnoreArguments().Return(true);

            //ACT
            sut.AddAccount(new Account(), "");

            //ASSERT
            mockmail.VerifyAllExpectations();
        }