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