Neos\Flow\Tests\Unit\Security\Aspect\PolicyEnforcementAspectTest::enforcePolicyCallsTheTheAfterInvocationInterceptorCorrectly PHP Méthode

enforcePolicyCallsTheTheAfterInvocationInterceptorCorrectly() public méthode

    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);
    }