Exemple #1
0
        public void DeleteNotFound()
        {
            Mock <ILogger <CountryRepository> > loggerMoc = CountryRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = CountryRepositoryMoc.GetContext();
            var repository = new CountryRepository(loggerMoc.Object, context);

            Func <Task> delete = async() =>
            {
                await repository.Delete(default(int));
            };

            delete.Should().NotThrow();
        }
Exemple #2
0
        public async void Delete()
        {
            Mock <ILogger <CountryRepository> > loggerMoc = CountryRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = CountryRepositoryMoc.GetContext();
            var     repository           = new CountryRepository(loggerMoc.Object, context);
            Country entity = new Country();

            context.Set <Country>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

            Country modifiedRecord = await context.Set <Country>().FirstOrDefaultAsync();

            modifiedRecord.Should().BeNull();
        }
Exemple #3
0
        public async void DeleteFound()
        {
            Mock <ILogger <CountryRepository> > loggerMoc = CountryRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = CountryRepositoryMoc.GetContext();
            var     repository           = new CountryRepository(loggerMoc.Object, context);
            Country entity = new Country();

            entity.SetProperties(default(int), "B");
            context.Set <Country>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

            var records = await context.Set <Country>().ToListAsync();

            records.Count.Should().Be(1);
        }