本文实例讲述了phpunit 单元测试安装与使用。分享给大家供大家参考,具体如下:
官网提供了两种方法安装
1.php archive (phar)
wget -o phpunit /d/file/titlepic/phpunit-8.5.33.phar chmod +x phpunit ./phpunit --versionphpunit 8.0.0 by bastian bergmann and contributors.
2. compor
compor require --dev phpunit/phpunit ^8 ./vendor/bin/phpunit --versionphpunit 8.0.0 by bastian bergmann and contributors.
安装完成后在当前目录下添加文件emailtest.php,文件内容如下
<?phpdeclare(strict_types=1);u phpunit\framework\testca;final class emailtest extends testca{ public function testcanbecreatedfromvalidemailaddress(): void { $this->asrtinstanceof( email::class, email::fromstring('ur@example.com'那么再见) ); } public function testcannotbecreatedfrominvalidemailaddress(): void { $this-黄文秀事迹>expectexception(invatp的结构简式alidargumentexception::class); email::fromstring('invalid'); } public functi中考复习资料on testcanbeudasstring(): void { $this->asrtequals( 'ur@example.com', email::fromstring('ur@example.com') ); }}
运行测试
./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/emailtes货币政策工具tphpunit 8.0.0 by bastian bergmann and contributors.... 3 / 3 (100%)time: 70 ms, memory: 10.00mbok (3 tests, 3 asrtions)
本文发布于:2023-04-08 19:16:35,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/ab9b1cf3cc155589d8864c92bf49b741.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHPUnit 单元测试安装与使用入门教程.doc
本文 PDF 下载地址:PHPUnit 单元测试安装与使用入门教程.pdf
留言与评论(共有 0 条评论) |