hshn/phpunit-object-constraint
Composer 安装命令:
composer require hshn/phpunit-object-constraint
包简介
README 文档
README
PHPUnit helper for explicit object comparison.
Make it easier to your apps more safety by providing easy object assertion.
How to use
1. Import helper trait into your class
use Hshn\PHPUnit\Framework\Constraint\ObjectConstraintSupport; class MyTest extends \PHPUnit_Framework_TestCase { use ObjectConstraintSupport; }
2. Build your object constraint using constraint builder
public function test1() { // this constraint means: // property 'foo' start with 'a' and end with 'e' // and property 'bar' is true $constraint = $this->constraintFor(\stdClass::class) ->property('foo') ->stringStartsWith('a') ->stringEndsWith('e') ->property('bar') ->isTrue() ->getConstraint(); }
3. Assert any value with the constraint you built
self::assertThat($value, $constraint);
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-01-24