コード例 #1
0
ファイル: FormTest.php プロジェクト: walterjrp/form-builder
 public function testVerificaSetGetAction()
 {
     $form = new Form('form');
     $form->setAction('index.php');
     $this->assertEquals('index.php', $form->getAction());
 }