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