public function testGetDoesntAllowOtherMethods()
 {
     $_SERVER['REQUEST_METHOD'] = 'GET';
     $routes = new RouteCollection();
     $expected = ['here' => '\\there'];
     $routes->get('here', 'there');
     $routes->post('from', 'to');
     $this->assertEquals($expected, $routes->getRoutes());
 }