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

setNameCorrectlySetsRouteName() public method

    public function setNameCorrectlySetsRouteName()
    {
        $this->route->setName('SomeName');
        $this->assertEquals('SomeName', $this->route->getName());
    }
RouteTest