public void DeleteNotFound() { Mock <ILogger <VoteTypeRepository> > loggerMoc = VoteTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteTypeRepositoryMoc.GetContext(); var repository = new VoteTypeRepository(loggerMoc.Object, context); Func <Task> delete = async() => { await repository.Delete(default(int)); }; delete.Should().NotThrow(); }
public async void Delete() { Mock <ILogger <VoteTypeRepository> > loggerMoc = VoteTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteTypeRepositoryMoc.GetContext(); var repository = new VoteTypeRepository(loggerMoc.Object, context); VoteType entity = new VoteType(); context.Set <VoteType>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); VoteType modifiedRecord = await context.Set <VoteType>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void DeleteFound() { Mock <ILogger <VoteTypeRepository> > loggerMoc = VoteTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteTypeRepositoryMoc.GetContext(); var repository = new VoteTypeRepository(loggerMoc.Object, context); VoteType entity = new VoteType(); entity.SetProperties(default(int), "B"); context.Set <VoteType>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); var records = await context.Set <VoteType>().ToListAsync(); records.Count.Should().Be(1); }