Exemple #1
0
        public async void Create()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var repository = new DeviceRepository(loggerMoc.Object, context);

            var entity = new Device();
            await repository.Create(entity);

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

            record.Should().NotBeNull();
        }
        public async void Create()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var repository = new DeviceRepository(loggerMoc.Object, context);

            var 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"));
            await repository.Create(entity);

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

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