コード例 #1
0
ファイル: AdminTest.php プロジェクト: drmjo/SonataAdminBundle
 public function testGetMaxPerPage()
 {
     $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\\Entity\\Post', 'SonataNewsBundle:PostAdmin');
     $this->assertSame(32, $admin->getMaxPerPage());
     $admin->setMaxPerPage(94);
     $this->assertSame(94, $admin->getMaxPerPage());
 }