Go\Aop\Support\TruePointFilterTest::testMatches PHP 메소드

testMatches() 공개 메소드

Test that true matcher always matches the class
public testMatches ( )
    public function testMatches()
    {
        // Works correctly with ReflectionClass
        $class = new \ReflectionClass('stdClass');
        $this->assertTrue($this->filter->matches($class));
    }
TruePointFilterTest