Neos\Flow\Tests\Unit\Mvc\Routing\RouteTest::getMatchResultsReturnsCorrectResultsAfterSuccessfulMatch PHP Method

getMatchResultsReturnsCorrectResultsAfterSuccessfulMatch() public method

    public function getMatchResultsReturnsCorrectResultsAfterSuccessfulMatch()
    {
        $this->route->setUriPattern('foo/{bar}');
        $this->routeMatchesPath('foo/someValue');
        $this->assertEquals(['bar' => 'someValue'], $this->route->getMatchResults(), 'Route match results should be set correctly on successful match');
    }
RouteTest