| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * office-converter
- *
- * Author: Chukwuemeka Nwobodo (jcnwobodo@gmail.com)
- * Date: 11/13/2016
- * Time: 12:49 AM
- **/
- use NcJoes\OfficeConverter\OfficeConverter;
- use PHPUnit\Framework\TestCase;
- class OfficeConverterTest extends TestCase
- {
- /**
- * @var OfficeConverter $converter
- */
- private $converter;
- private $outDir;
- public function setUp()
- {
- parent::setUp();
- $DS = DIRECTORY_SEPARATOR;
- $file = __DIR__."{$DS}sources{$DS}test1.docx";
- $this->outDir = __DIR__."{$DS}results";
- $this->converter = new OfficeConverter($file, $this->outDir);
- }
- public function testDocxToPdfConversion()
- {
- $output = $this->converter->convertTo('result1.pdf');
- $this->assertFileExists($output);
- }
- public function testDocxToHtmlConversion()
- {
- $output = $this->converter->convertTo('result1.html');
- $this->assertFileExists($output);
- }
- }
|