Heimdall/vendor/hamcrest/hamcrest-php
2018-02-01 20:01:12 +00:00
..
generator Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
hamcrest Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
tests Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
.coveralls.yml Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
.gitignore Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
.gush.yml Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
.travis.yml Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
CHANGES.txt Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
composer.json Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
composer.lock Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
LICENSE.txt Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
README.md Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00
TODO.txt Add vendor and .env to make usable 2018-02-01 20:01:12 +00:00

This is the PHP port of Hamcrest Matchers

Build Status Scrutinizer Code Quality Code Coverage

Hamcrest is a matching library originally written for Java, but subsequently ported to many other languages. hamcrest-php is the official PHP port of Hamcrest and essentially follows a literal translation of the original Java API for Hamcrest, with a few Exceptions, mostly down to PHP language barriers:

  1. instanceOf($theClass) is actually anInstanceOf($theClass)

  2. both(containsString('a'))->and(containsString('b')) is actually both(containsString('a'))->andAlso(containsString('b'))

  3. either(containsString('a'))->or(containsString('b')) is actually either(containsString('a'))->orElse(containsString('b'))

  4. Unless it would be non-semantic for a matcher to do so, hamcrest-php allows dynamic typing for it's input, in "the PHP way". Exception are where semantics surrounding the type itself would suggest otherwise, such as stringContains() and greaterThan().

  5. Several official matchers have not been ported because they don't make sense or don't apply in PHP:

    • typeCompatibleWith($theClass)
    • eventFrom($source)
    • hasProperty($name) **
    • samePropertyValuesAs($obj) **
  6. When most of the collections matchers are finally ported, PHP-specific aliases will probably be created due to a difference in naming conventions between Java's Arrays, Collections, Sets and Maps compared with PHP's Arrays.


** [Unless we consider POPO's (Plain Old PHP Objects) akin to JavaBeans] - The POPO thing is a joke. Java devs coin the term POJO's (Plain Old Java Objects).

Usage

Hamcrest matchers are easy to use as:

Hamcrest_MatcherAssert::assertThat('a', Hamcrest_Matchers::equalToIgnoringCase('A'));