Example #1
0
 public function testPaginate()
 {
     $repository = new TestRepository();
     $items = $repository->paginate(1, 5);
     $this->assertTrue(count($items) == 5);
     $this->assertTrue($items[0]->id == 1);
 }