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