PHP code example of ascii-soup / hamcrest-callback-matcher

1. Go to this page and download the library: Download ascii-soup/hamcrest-callback-matcher library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ascii-soup / hamcrest-callback-matcher example snippets


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

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