Exemplo n.º 1
0
        public async Task DeleteAccount_IncrementsTheCounter()
        {
            var counter = new Counter {
                Count = 0
            };
            await service.DeleteAccount(counter);

            Assert.AreEqual(1, counter.Count);
        }
Exemplo n.º 2
0
 async Task DeleteAccount()
 {
     await service.DeleteAccount(counter);
 }