public async void Get() { Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = PostTypeRepositoryMoc.GetContext(); var repository = new PostTypeRepository(loggerMoc.Object, context); PostType entity = new PostType(); context.Set <PostType>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Update_Entity_Is_Tracked() { Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = PostTypeRepositoryMoc.GetContext(); var repository = new PostTypeRepository(loggerMoc.Object, context); PostType entity = new PostType(); context.Set <PostType>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); await repository.Update(record); var modifiedRecord = context.Set <PostType>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Update_Entity_Is_Tracked() { Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = PostTypeRepositoryMoc.GetContext(); var repository = new PostTypeRepository(loggerMoc.Object, context); PostType entity = new PostType(); entity.SetProperties(default(int), "B"); context.Set <PostType>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); await repository.Update(record); var records = await context.Set <PostType>().ToListAsync(); records.Count.Should().Be(2); }