Esempio n. 1
0
 public function testInvalidIfBoundWithExtraFields()
 {
     $group = new TestFieldGroup('author');
     $group->add($this->createValidMockField('firstName'));
     $group->add($this->createValidMockField('lastName'));
     $group->bind(array('foo' => 'bar', 'firstName' => 'Bernhard', 'lastName' => 'Potencier'));
     $this->assertTrue($group->isBoundWithExtraFields());
 }