示例#1
0
        public async void All()
        {
            Mock <ILogger <CallRepository> > loggerMoc = CallRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = CallRepositoryMoc.GetContext();
            var repository = new CallRepository(loggerMoc.Object, context);
            var records    = await repository.All();

            records.Should().NotBeEmpty();
            records.Count.Should().Be(1);
        }
示例#2
0
        public void DeleteNotFound()
        {
            Mock <ILogger <CallRepository> > loggerMoc = CallRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = CallRepositoryMoc.GetContext();
            var repository = new CallRepository(loggerMoc.Object, context);

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

            delete.Should().NotThrow();
        }
示例#3
0
        public async void Create()
        {
            Mock <ILogger <CallRepository> > loggerMoc = CallRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = CallRepositoryMoc.GetContext();
            var repository = new CallRepository(loggerMoc.Object, context);

            var entity = new Call();

            entity.SetProperties(default(int), 1, 1, 1, "B", 1, DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), DateTime.Parse("1/1/1988 12:00:00 AM"), 2);
            await repository.Create(entity);

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

            records.Count.Should().Be(2);
        }
示例#4
0
        public async void Get()
        {
            Mock <ILogger <CallRepository> > loggerMoc = CallRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = CallRepositoryMoc.GetContext();
            var repository = new CallRepository(loggerMoc.Object, context);

            Call entity = new Call();

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

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

            record.Should().NotBeNull();
        }
示例#5
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <CallRepository> > loggerMoc = CallRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = CallRepositoryMoc.GetContext();
            var  repository = new CallRepository(loggerMoc.Object, context);
            Call entity     = new Call();

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

            context.Entry(entity).State = EntityState.Detached;

            await repository.Update(entity);

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

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