Ejemplo n.º 1
0
 public function testFormDataIsEmptyArrayAfterConstruction()
 {
     $formId = $this->getFormIdMock();
     $form = new Form($formId);
     $this->assertInternalType('array', $form->getData());
     $this->assertEmpty($form->getData());
 }