public async void Create() { Mock <ILogger <StateRepository> > loggerMoc = StateRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = StateRepositoryMoc.GetContext(); var repository = new StateRepository(loggerMoc.Object, context); var entity = new State(); await repository.Create(entity); var record = await context.Set <State>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public async void Get() { Mock <ILogger <StateRepository> > loggerMoc = StateRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = StateRepositoryMoc.GetContext(); var repository = new StateRepository(loggerMoc.Object, context); State entity = new State(); context.Set <State>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Delete() { Mock <ILogger <StateRepository> > loggerMoc = StateRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = StateRepositoryMoc.GetContext(); var repository = new StateRepository(loggerMoc.Object, context); State entity = new State(); context.Set <State>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); State modifiedRecord = await context.Set <State>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <StateRepository> > loggerMoc = StateRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = StateRepositoryMoc.GetContext(); var repository = new StateRepository(loggerMoc.Object, context); State entity = new State(); context.Set <State>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new State()); var modifiedRecord = context.Set <State>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }