public function testCLI()
 {
     $routes = new RouteCollection();
     $expected = ['here' => '\\there'];
     $routes->cli('here', 'there');
     $this->assertEquals($expected, $routes->getRoutes());
 }