hshn / phpunit-object-constraint
v0.1.0
2018-01-17 15:20 UTC
Requires
- php: ^7.0.0
- phpunit/phpunit: ^5.7.5
- symfony/property-access: ^3.0.9|^2.8.15
This package is not auto-updated.
Last update: 2024-11-10 05:46:00 UTC
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);