assertEquals( "9782207258040", $ean13, "It should convert to EAN-13" ); } public function testFormatEan13InvalidIsbn() { $this->expectException("Biblys\Isbn\IsbnParsingException"); $this->expectExceptionMessage("Invalid characters in the code"); Isbn::convertToEan13("ABC-80-7203-7"); } }