garethellis/hamcrest-matchers
最新稳定版本:4.0.0
Composer 安装命令:
composer require garethellis/hamcrest-matchers
包简介
A set of custom Hamcrest matchers
README 文档
README
A simple collection of custom Hamcrest matchers for use with hamcrest/hamcrest-php.
Installation
Install with composer:
composer require --dev garethellis/hamcrest-matchers
Matchers
UUID matcher
Matches a valid UUID. Example usage:
<?php /** ... **/ assertThat($uuid, is(aUUID()));
To match an array of UUIDs:
<?php /** ... **/ assertThat([$uuid1, $uuid2, $uuid3], is(anArrayOfUUIDs()));
This matcher uses the callback matcher (see below) from Nils Luxton.
HTML matcher
Matches a string containing HTML. Example usage;
<?php /** ... **/ assertThat($html, containsHTML());
Valid JSON matcher
Matches a valid JSON string. Example usage:
<?php /** .. **/ assertThat($json, is(validJSON()));
Array values matcher
Match the values of an array or Traversable instance. Note - ignores keys.
assertThat($aTraversableInstance, hasEqualValuesTo($anArray));
Callback Matcher
Callback matching is achieved thanks to Nils Luxton and his callback matcher lib (included as a composer dependency in this library). Example usage:
assertThat("hello", matchesUsing(function($value) { return $value === "hello"; }));
Creating new custom callback matchers
You can create your own custom matchers with the callback matcher by using describedAs() to provide a better
description for the expectation.
function isSomething() { return describedAs('a custom value', new CallbackMatcher( function($value) { return $value === 'my custom value'; } ) } assertThat($foo, isSomething());
统计信息
- 总下载量: 6.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-03-15