예제 #1
0
파일: FormTest.php 프로젝트: jarosz/symfony
 public function testRenderFormTagProducesValidXhtml()
 {
     $form = new Form('author', new Author(), $this->validator);
     $this->assertEquals('<form action="url" method="post">', $form->renderFormTag('url'));
 }