Inheritance: implements Nelmio\Alice\FixtureBuilder\ExpressionLanguage\Parser\TokenParserInterface, implements Nelmio\Alice\FixtureBuilder\ExpressionLanguage\ParserAwareInterface, use trait Nelmio\Alice\IsAServiceTrait
 /**
  * @expectedException \Nelmio\Alice\Throwable\Exception\FixtureBuilder\ExpressionLanguage\ParserNotFoundException
  * @expectedExceptionMessage No suitable token parser found to handle the token "foo" (type: STRING_TYPE).
  */
 public function testThrowsAnExceptionIfNoSuitableParserIsFound()
 {
     $registry = new TokenParserRegistry([]);
     $registry->parse(new Token('foo', new TokenType(TokenType::STRING_TYPE)));
 }