Пример #1
0
        public void DeleteNotFound()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var repository = new DeviceRepository(loggerMoc.Object, context);

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

            delete.Should().NotThrow();
        }
Пример #2
0
        public async void Delete()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var    repository            = new DeviceRepository(loggerMoc.Object, context);
            Device entity = new Device();

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

            await repository.Delete(entity.Id);

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

            modifiedRecord.Should().BeNull();
        }
Пример #3
0
        public async void DeleteFound()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var    repository            = new DeviceRepository(loggerMoc.Object, context);
            Device entity = new Device();

            entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), true, "B", Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"));
            context.Set <Device>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

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

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