Пример #1
0
 public function testHtmlToPdfFile()
 {
     $filePath = '/tmp/HtmlToPdfFile.pdf';
     $htmlMock = $this->getContentMock();
     $this->pdfGenerator->renderFileFromHtml($htmlMock, $filePath);
     $this->assertFileExists($filePath);
     unlink($filePath);
 }