示例#1
0
        public async Task DeleteShould_DropTheGivenInternship()
        {
            await sut.Delete(internship.Id);

            Assert.AreEqual(null, await _context.FindAsync <Internship>(internship.Id));
        }