Esempio n. 1
0
 public function testIsBound()
 {
     $group = new TestFieldGroup('author');
     $this->assertFalse($group->isBound());
     $group->bind(array('firstName' => 'Bernhard'));
     $this->assertTrue($group->isBound());
 }