Neos\Flow\Tests\Unit\Security\Aspect\PolicyEnforcementAspectTest::enforcePolicyCallsTheTheAfterInvocationInterceptorCorrectly PHP Method

enforcePolicyCallsTheTheAfterInvocationInterceptorCorrectly() public method

    public function enforcePolicyCallsTheTheAfterInvocationInterceptorCorrectly()
    {
        $this->markTestSkipped('Currently the AfterInvocationInterceptor is not used.');
        $this->mockJoinPoint->expects($this->once())->method('getAdviceChain')->will($this->returnValue($this->mockAdviceChain));
        // $this->mockAfterInvocationInterceptor->expects($this->once())->method('invoke');
        $this->policyEnforcementAspect->enforcePolicy($this->mockJoinPoint);
    }