ascii-soup / hamcrest-callback-matcher

Hamcrest matcher for matching using callbacks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hamcrest Callback Matcher

Usage:

assertThat("hello", matchesUsing(function($value) { return $value === "hello"; }));

Creating new custom matchers

Creating new custom matchers is made simpler with the callback matcher.

You can use describedAs() to provide a better description for the expectation.

function myCustomMatcher()
{
    return describedAs('a custom value', new CallbackMatcher(
        function($value) {
            return $value === 'my custom value';
        }
    )
}

About

Hamcrest matcher for matching using callbacks


Languages

Language:PHP 100.0%