@expectedException \LogicException
public function testDumpWhenSchemeIsUsedWithoutAProperDumper() {
$collection = new RouteCollection();
$collection
->add('secure', new Route('/secure', array(), array(
'_scheme' => 'https',
)));
$dumper = new PhpMatcherDumper($collection);
$dumper
->dump();
}