public function testPut() { $_SERVER['REQUEST_METHOD'] = 'PUT'; $routes = new RouteCollection(); $expected = ['here' => '\\there']; $routes->put('here', 'there'); $this->assertEquals($expected, $routes->getRoutes()); }