beginTemplate(); $this->expectException(\BadMethodCallException::class); $pdf->AddPage(); } public function testSetPageFormatInTemplate() { $pdf = new FpdfTpl(); $pdf->beginTemplate(); $this->expectException(\BadMethodCallException::class); $pdf->setPageFormat([10, 10], 'L'); } }