PHP Classes

File: vendor/hamcrest/hamcrest-php/generator/parts/functions_header.txt

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/hamcrest/hamcrest-php/generator/parts/functions_header.txt   Download  
File: vendor/hamcrest/hamcrest-php/generator/parts/functions_header.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 654 bytes
 

Contents

Class file image Download
if (!function_exists('assertThat')) { /** * Make an assertion and throw {@link Hamcrest_AssertionError} if it fails. * * Example: * <pre> * //With an identifier * assertThat("assertion identifier", $apple->flavour(), equalTo("tasty")); * //Without an identifier * assertThat($apple->flavour(), equalTo("tasty")); * //Evaluating a boolean expression * assertThat("some error", $a > $b); * </pre> */ function assertThat() { $args = func_get_args(); call_user_func_array( array('Hamcrest\MatcherAssert', 'assertThat'), $args ); } }