public async void All() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); var records = await repository.All(); records.Should().NotBeEmpty(); records.Count.Should().Be(1); }
public void DeleteNotFound() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); Func <Task> delete = async() => { await repository.Delete(default(int)); }; delete.Should().NotThrow(); }
public async void Create() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); var entity = new Transaction(); await repository.Create(entity); var record = await context.Set <Transaction>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public async void Create() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); var entity = new Transaction(); entity.SetProperties(default(int), 2m, "B", 1); await repository.Create(entity); var records = await context.Set <Transaction>().ToListAsync(); records.Count.Should().Be(2); }
public async void Get() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); Transaction entity = new Transaction(); context.Set <Transaction>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Delete() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); Transaction entity = new Transaction(); context.Set <Transaction>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); Transaction modifiedRecord = await context.Set <Transaction>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); Transaction entity = new Transaction(); context.Set <Transaction>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new Transaction()); var modifiedRecord = context.Set <Transaction>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <TransactionRepository> > loggerMoc = TransactionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = TransactionRepositoryMoc.GetContext(); var repository = new TransactionRepository(loggerMoc.Object, context); Transaction entity = new Transaction(); entity.SetProperties(default(int), 2m, "B", 1); context.Set <Transaction>().Add(entity); await context.SaveChangesAsync(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <Transaction>().ToListAsync(); records.Count.Should().Be(2); }