Neos\Flow\Tests\Functional\Mvc\ActionControllerTest::notValidatedGroupObjectArgumentsAreNotValidated PHP Метод

notValidatedGroupObjectArgumentsAreNotValidated() публичный Метод

    public function notValidatedGroupObjectArgumentsAreNotValidated()
    {
        $arguments = ['argument' => ['name' => 'Foo', 'emailAddress' => '-invalid-']];
        $response = $this->browser->request('http://localhost/test/mvc/actioncontrollertestb/notvalidatedgroupobject', 'POST', $arguments);
        $expectedResult = '-invalid-';
        $this->assertEquals($expectedResult, $response->getContent());
    }