Go\Aop\Support\TruePointFilterTest::testMatches PHP Method

testMatches() public method

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