Inheritance: implements Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface, use trait Nelmio\Alice\IsAServiceTrait
Example #1
0
 /**
  * @expectedException \Nelmio\Alice\Throwable\Exception\FixtureBuilder\Denormalizer\FlagParser\FlagParserNotFoundException
  * @expectedExceptionMessage No suitable flag parser found to handle the element "string to parse".
  */
 public function testThrowsAnExceptionIfNotSuitableParserFound()
 {
     $parser = new FlagParserRegistry([]);
     $parser->parse('string to parse');
 }