コード例 #1
0
ファイル: FormTest.php プロジェクト: spf13/symfony
 public function testUpdatePropertyIsNotIgnoredIfFormHasNoObject()
 {
     $author = new Author();
     $child = new Author();
     $form = new Form('child');
     $form->setData($child);
     $form->updateProperty($author);
     // $author->child was set
     $this->assertSame($child, $author->child);
 }