PHP使用phpunit进行单元测试示例
程序员文章站
2022-05-28 19:24:57
本文实例讲述了php使用phpunit进行单元测试。分享给大家供大家参考,具体如下:
1. linux服务器上安装phpunit
wget https://phar.php...
本文实例讲述了php使用phpunit进行单元测试。分享给大家供大家参考,具体如下:
1. linux服务器上安装phpunit
wget https://phar.phpunit.de/phpunit.phar chmod +x phpunit.phar sudo mv phpunit.phar /usr/local/bin/phpunit
建立phpunit短命令
phpunit --version
[root@dongzi phpunit_test]# phpunit --version phpunit 5.6.1 by sebastian bergmann and contributors.
2. 创建单元测试文件
文件名称为unittest.php
我们可以在单元测试文件内的方法里面调用功能模块,用数据模拟看是否运行正常,如果通则会报错,断掉
<?php class unittest extends phpunit_framework_testcase{ public function testpushandpop(){ $stack = array(); $this->assertequals(0,count($stack)); array_push($stack,'foo'); //断言插入数据到$stack数组后值是否等于1 $this->assertequals(1,count($stack)); } /** *定义test标签声明该方法是测试方法 *@test ***/ public function indexequals(){ $stack = array(1,2,3,4); //断言$stack[0]等于2 $this->assertequals(2,$stack[0]); } } ?>
3. phpunit运行文件
[root@dongzi phpunit_test]# phpunit unittest.php phpunit 5.6.1 by sebastian bergmann and contributors. .f 2 / 2 (100%) time: 82 ms, memory: 6.75mb there was 1 failure: 1) unittest::indexequals failed asserting that 1 matches expected 2. /wwwroot/phpunit_test/unittest.php:18 failures! tests: 2, assertions: 3, failures: 1.
结果显示测试php文件*运行两个模块,有一个模块错误
错误测试方法名为indexequals报错行为18行。
因为因为stack等于0不等于断言的1,所以报错,定位错误成功。
上一篇: PHP中16个高危函数整理
下一篇: php进行md5加密简单实例方法