Neos\Flow\Tests\Unit\Mvc\Routing\IdentityRoutePartTest::resolveValueReturnsFalseIfTheGivenValueIsNotOfTheSpecifiedType PHP Метод

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

    public function resolveValueReturnsFalseIfTheGivenValueIsNotOfTheSpecifiedType()
    {
        $this->identityRoutePart->setObjectType('SomeObjectType');
        $this->assertFalse($this->identityRoutePart->_call('resolveValue', new \stdClass()));
    }
IdentityRoutePartTest