예제 #1
0
파일: PdfTest.php 프로젝트: jsnshrmn/Suma
 /**
  * PDF with no text fields must return empty array
  */
 public function testGetTextFieldNamesNoFieldsEmptyArray()
 {
     $pdf = new Zend_Pdf();
     $fieldNames = $pdf->getTextFieldNames();
     $this->assertEquals(array(), $fieldNames);
 }