aesonus / test-lib
定义了一个具有一些不错方法的基测试用例
v4.01
2020-07-20 17:34 UTC
Requires
- php: ^7.2
- mikey179/vfsstream: ^1.6
- phpunit/phpunit: ^8 | ^9
README
测试库
此包包含用于测试目的的基类。它还包括phpunit版本8,以及一个虚拟文件系统来模拟真实文件系统。
安装
composer require aesonus/test-lib
用法
您可以使用此功能来断言数组仅包含预期的值。键被完全忽略。
在测试用例中使用
class TestCase extends Aesonus\TestLib\BaseTestCase { public function testCase() { $this->assertArrayContainsValues($expected, $actual); $this->assertArrayContainsAtLeastValues($expected, $actual); } }
错误
欢迎您通过电子邮件发送错误报告或打开一个问题