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); } }