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

testMatches() 공개 메소드

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);
    }