コード例 #1
0
ファイル: RequestTest.php プロジェクト: beeblebrox3/Request
 public function testPaginateWhenPageIsSet()
 {
     $_GET['page'] = 7;
     $this->assertEquals(true, $this->object->paginate());
     $this->assertEquals(7, $this->object->page());
 }