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