Esempio n. 1
0
 public function testRemoveUnsetsFieldParent()
 {
     $group = new TestFieldGroup('author');
     $field = $this->createMockField('firstName');
     $field->expects($this->exactly(2))->method('setParent');
     // PHPUnit fails to compare subsequent method calls with different arguments
     $group->add($field);
     $group->remove('firstName');
 }