Coduo\PHPMatcher\Tests\Matcher\Pattern\Expander\CountTest::test_error_when_matching_fail PHP Method

test_error_when_matching_fail() public method

public test_error_when_matching_fail ( $boundary, $value, $errorMessage )
    public function test_error_when_matching_fail($boundary, $value, $errorMessage)
    {
        $expander = new Count($boundary);
        $this->assertFalse($expander->match($value));
        $this->assertEquals($errorMessage, $expander->getError());
    }