Neos\Flow\Tests\Functional\Mvc\ViewsConfiguration\ViewsConfigurationTest::templatePathAndFilenameIsChanged PHP Method

templatePathAndFilenameIsChanged() public method

    public function templatePathAndFilenameIsChanged()
    {
        $response = $this->browser->request('http://localhost/test/mvc/viewsconfigurationa/first');
        $this->assertEquals('Changed on Package Level', $response->getContent());
        $response = $this->browser->request('http://localhost/test/mvc/viewsconfigurationb/first');
        $this->assertEquals('Changed on Controller Level', $response->getContent());
    }