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

            Assert.AreEqual(1, counter.Count);
        }
Beispiel #2
0
 async Task DeleteAccount()
 {
     await service.DeleteAccount(counter);
 }