Exemple #1
0
 /**
  * @expectedException OutOfBoundsException
  * @expectedMessage No element exists with the name [first_name]
  */
 public function testInvalidElement()
 {
     $fs = new Fieldset();
     $fs->setName('customers');
     $fs->getElement('first_name');
 }