コード例 #1
0
ファイル: FormTest.php プロジェクト: NerdGZ/icingaweb2
 /**
  * @depends testWhetherAUniqueFormIdIsNotBeingAdded
  */
 public function testWhetherAFormIsNotSentWithoutAUniqueFormIdBeingAdded()
 {
     $form = new Form();
     $form->setTokenDisabled();
     $form->setUidDisabled();
     $form->create();
     $this->assertFalse($form->wasSent(array()), 'Form::wasSent() does not return false in case no form identification element was added');
 }