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 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);
        }