예제 #1
0
 public function testSetFormTheme()
 {
     $theme = 'MyBundle:Layout\\php';
     $this->formRenderer->expects($this->once())->method('addDefaultThemes')->with($theme);
     $this->helper->setFormTheme($theme);
 }
예제 #2
0
 public function testSetFormTheme()
 {
     $theme = 'MyBundle::forms.html.twig';
     $this->formRenderer->expects($this->once())->method('addDefaultThemes')->with($theme);
     $this->renderer->setFormTheme($theme);
 }