Neos\Flow\Tests\Functional\Mvc\AbstractControllerTest::forwardPassesRequestToActionWithInternalArgumentsContainingObjects PHP Méthode

forwardPassesRequestToActionWithInternalArgumentsContainingObjects() public méthode

Checks if a request is forwarded to the second action and passes the givn straight-value arguments.
    public function forwardPassesRequestToActionWithInternalArgumentsContainingObjects()
    {
        $response = $this->browser->request('http://localhost/test/mvc/abstractcontrollertesta/forward?actionName=fourth&passSomeObjectArguments=1&arguments[nonObject1]=First&arguments[nonObject2]=42');
        $this->assertEquals('fourthAction-First-42-Neos\\Error\\Messages\\Message', $response->getContent());
    }