Beispiel #1
0
 public function testDontSeeInFormFieldsFails()
 {
     $this->module->amOnPage('/form/field_values');
     $this->setExpectedException("PHPUnit_Framework_AssertionFailedError");
     $params = ['checkbox[]' => ['wont see this anyway', 'see test one'], 'select2' => ['not seen one', 'No where to be seen']];
     $this->module->dontSeeInFormFields('form', $params);
 }