Go\Aop\Support\TruePointFilterTest::testMatches PHP Méthode

testMatches() public méthode

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