public void Check_GetAllPost_Type()
        {
            BlogPostController postController = new BlogPostController();
            var posts = postController.GetAllPosts();

            Assert.IsType <OkObjectResult>(posts);
        }