コード例 #1
0
ファイル: FormTest.php プロジェクト: icehawk/forms
 public function testFormDataIsEmptyArrayAfterConstruction()
 {
     $formId = $this->getFormIdMock();
     $form = new Form($formId);
     $this->assertInternalType('array', $form->getData());
     $this->assertEmpty($form->getData());
 }