Hamcrest\InvokedMatcherTest::testInvokedMatchersCallMatches PHP Method

testInvokedMatchersCallMatches() public method

    public function testInvokedMatchersCallMatches()
    {
        $sampleMatcher = new SampleInvokeMatcher('foo');
        $this->assertTrue($sampleMatcher('foo'));
        $this->assertFalse($sampleMatcher('bar'));
    }