Esempio n. 1
0
        public void DeleteNotFound()
        {
            Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = VoteRepositoryMoc.GetContext();
            var repository = new VoteRepository(loggerMoc.Object, context);

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

            delete.Should().NotThrow();
        }
Esempio n. 2
0
        public async void Delete()
        {
            Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = VoteRepositoryMoc.GetContext();
            var  repository = new VoteRepository(loggerMoc.Object, context);
            Vote entity     = new Vote();

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

            await repository.Delete(entity.Id);

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

            modifiedRecord.Should().BeNull();
        }
Esempio n. 3
0
        public async void DeleteFound()
        {
            Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = VoteRepositoryMoc.GetContext();
            var  repository = new VoteRepository(loggerMoc.Object, context);
            Vote entity     = new Vote();

            entity.SetProperties(default(int), 2, DateTime.Parse("1/1/1988 12:00:00 AM"), 1, 1, 1);
            context.Set <Vote>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

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

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