expectException(SpreadsheetException::class); $this->expectExceptionMessage('Reader classes must implement their own loadSpreadsheetFromFile() method'); $reader = new BaseNoLoad(); $reader->load('unknown.file'); } public function testBaseNoLoadInfo(): void { $this->expectException(SpreadsheetException::class); $this->expectExceptionMessage('Reader classes must implement their own listWorksheetInfo() method'); $reader = new BaseNoLoad(); $reader->listWorksheetInfo('unknown.file'); } }