/** @test */
 public function it_allows_other_classes_to_call_method_to_get_paginated_load_more()
 {
     $testClass = new TestClass();
     $results = $testClass->paginatedLoadMore(9, 3, new Post());
     $this->assertTrue(is_array($results));
 }