本文实例讲述了php使用phpunit进行单元测试。分享给大家供大家参考,具体如下:
1. linux服务器上安装phpunit
wget https://phar.phpunit.de/phpunit.pharchmod +x phpunit.pharsudo mv phpunit.phar /usr/local/bin/phpunit
建立phpunit短命令
phpunit --version
[root@dongzi phpunit_test]# phpunit --versionphpunit 5.6.1 by bastian bergmann and contributors.
2. 创建单元测试文件
文件名称为unittest.php
我们可以在单元测试文件内的方法里面调用功能模块,用数据模拟看是否运行正常,如果通则会报错,断掉
<?php class unittest extends phpunit_framework_testca{ public function testpushandpop(){ $stack = array(); $this->asrtequals(0,count($stack)); 现场live array_push($stack,'foo')毕业证查询网; //断言插入数据到$stack数组后值是否等于1 $this->asrtequals(1,count($stack)); } /** *定义test标签声明该方法是测试方法 *@test ***/ public夸奖老师的句子 function indexequals(){ $stack = array(1,2,3,4); //断言$stack[0]等于2 $this->asrtequals(2,$stack[0]); } }?>
3. phpunit运行文件
[root@dongzi phpunit_test]# phpunit unittest.phpphpunit 5.6.1 by bastian bergmann and co施工进度管理ntributors..f 2 / 2 (100%)time: 82 ms, memory: 6.75mbthere was 1 failure:1) un萝卜炖排骨的做法ittest::indexequalsfailed asrting that 1 matches expected 2./wwwroot/phpunit_test/unittest.php:18failures!tests: 2, asrtions: 3, failures: 1.
结果显示测试php文件中共运行两个模块,有一个模块错误
错误测试方法名为indexequals报错行为18行。
因为因为stack等于0不等于断言的1,所以报错,定位错误成功。
本文发布于:2023-04-08 07:20:49,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/ca330b35bcd4fc2b6320ab999e69e07f.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP使用phpunit进行单元测试示例.doc
本文 PDF 下载地址:PHP使用phpunit进行单元测试示例.pdf
留言与评论(共有 0 条评论) |