/** * Route sets custom pattern that overrides pattern */ public function testRouteSetsCustomTemplate() { $route = new \Slim\Route('/hello/*', function () { }); $route->setPattern('/hello/:name'); $this->assertEquals('/hello/:name', $route->getPattern()); }