public function setUp() { parent::setUp(); $this->exporter = $this->getMockForAbstractClass(AbstractPhantomExporter::class); $tmpConfig = $this->exporter->getDefaultConfiguration(); $this->configDefault = $tmpConfig['pdf']; }
public function testSetConfigValidOptions() { $exporter = new PdfExporter(); $exporter->setConfigValidOptions([]); $this->assertEquals([], $exporter->getConfigValidOptions()); }