Esempio n. 1
0
        public async void Get()
        {
            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();

            var record = await repository.Get(entity.Id);

            record.Should().NotBeNull();
        }
Esempio n. 2
0
        public async void Get()
        {
            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();

            var record = await repository.Get(entity.Id);

            record.Should().NotBeNull();
        }
Esempio n. 3
0
        public async void Update_Entity_Is_Tracked()
        {
            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();

            var record = await repository.Get(entity.Id);

            await repository.Update(record);

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

            modifiedRecord.Should().NotBeNull();
        }