Go\Aop\Framework\BaseInterceptorTest::testReturnsRawAdvice PHP Method

testReturnsRawAdvice() public method

    public function testReturnsRawAdvice()
    {
        $sequence = [];
        $advice = $this->getAdvice($sequence);
        $interceptor = $this->getMockForAbstractClass(BaseInterceptor::class, array($advice));
        $this->assertEquals($advice, $interceptor->getRawAdvice());
    }