clippings / phpunit-extensions
此包已废弃,不再维护。未建议替代包。
PHPUnit 的额外断言和约束
0.1.0
2014-06-05 10:49 UTC
This package is not auto-updated.
Last update: 2020-01-20 03:52:02 UTC
README
PHPUnit 的额外断言和约束
使用方法
assertArrayConstrained
- 用于为数组中的每个条目设置约束
use CL\PHPUnitExtensions\Constraint\ConstrainArray; class ExampleTest extends PHPUnit_Framework_TestCase { use ConstrainArrayTrait; public function testTest() { $this->assertArrayConstrained( array('test' => $this->equalTo('12')), array('test' => 12) ); } }
许可证
版权所有 (c) 2014, Clippings Ltd. 由 Ivan Kerin 开发
根据 BSD-3-Clause 许可证,请参阅 LICENSE 文件。