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

testMatches() public method

public testMatches ( Go\Aop\PointFilter $first, Go\Aop\PointFilter $second, $expected )
$first Go\Aop\PointFilter
$second Go\Aop\PointFilter
    public function testMatches(PointFilter $first, PointFilter $second, $expected)
    {
        $filter = new OrPointFilter($first, $second);
        $result = $filter->matches(new \ReflectionClass(__CLASS__));
        $this->assertSame($expected, $result);
    }