getInstance(); $this->expectException(\BadMethodCallException::class); $fpdi->importPage(1); } public function testUseImportedPageWithoutSettingSourceFile() { $fpdi = $this->getInstance(); $fpdi->AddPage(); $this->expectException(\InvalidArgumentException::class); $fpdi->useImportedPage(1); } }