public async void Update_Entity_Is_Not_Tracked() { 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.Update(new VoteType()); var modifiedRecord = context.Set <VoteType>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Update_Entity_Is_Not_Tracked() { 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(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <VoteType>().ToListAsync(); records.Count.Should().Be(2); }