예제 #1
0
 public function testGetMaxRecordLimit()
 {
     $this->assertSame(false, $this->pager->getMaxRecordLimit());
     $this->pager->setMaxRecordLimit(99);
     $this->assertSame(99, $this->pager->getMaxRecordLimit());
 }