Exemplo n.º 1
0
 /**
  * PDF with no text fields must return empty array
  */
 public function testGetTextFieldNamesNoFieldsEmptyArray()
 {
     $pdf = new Zend_Pdf();
     $fieldNames = $pdf->getTextFieldNames();
     $this->assertEquals(array(), $fieldNames);
 }