Exemplo n.º 1
0
        public async Task Test_Delete_Deletes_League()
        {
            await controller.DeleteConfirmed(1);

            context.MockLeagues.Verify(x => x.Remove(It.Is <League>(t => t.LeagueId == 1)));
        }