public async void All()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var repository = new PostTypeRepository(loggerMoc.Object, context);
            var records    = await repository.All();

            records.Should().NotBeEmpty();
            records.Count.Should().Be(1);
        }
        public async void Create()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var repository = new PostTypeRepository(loggerMoc.Object, context);

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

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

            record.Should().NotBeNull();
        }
        public void DeleteNotFound()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var repository = new PostTypeRepository(loggerMoc.Object, context);

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

            delete.Should().NotThrow();
        }
        public async void Get()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var repository = new PostTypeRepository(loggerMoc.Object, context);

            PostType entity = new PostType();

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

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

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

            var entity = new PostType();

            entity.SetProperties(default(int), "B");
            await repository.Create(entity);

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

            records.Count.Should().Be(2);
        }
        public async void Delete()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var      repository          = new PostTypeRepository(loggerMoc.Object, context);
            PostType entity = new PostType();

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

            await repository.Delete(entity.Id);

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

            modifiedRecord.Should().BeNull();
        }
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var      repository          = new PostTypeRepository(loggerMoc.Object, context);
            PostType entity = new PostType();

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

            await repository.Update(new PostType());

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

            modifiedRecord.Should().NotBeNull();
        }
        public async void DeleteFound()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var      repository          = new PostTypeRepository(loggerMoc.Object, context);
            PostType entity = new PostType();

            entity.SetProperties(default(int), "B");
            context.Set <PostType>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

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

            records.Count.Should().Be(1);
        }
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <PostTypeRepository> > loggerMoc = PostTypeRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = PostTypeRepositoryMoc.GetContext();
            var      repository          = new PostTypeRepository(loggerMoc.Object, context);
            PostType entity = new PostType();

            entity.SetProperties(default(int), "B");
            context.Set <PostType>().Add(entity);
            await context.SaveChangesAsync();

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

            await repository.Update(entity);

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

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