当前位置:首页 > PHP教程 > php应用 > 列表

PHP使用phpunit进行单元测试示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-21 14:59:23 浏览: 评论:0 

本文实例讲述了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

我们可以在单元测试文件内的方法里面调用功能模块,用数据模拟看是否运行正常,如果通则会报错,断掉。

  1. <?php 
  2.   class UnitTest extends PHPUnit_Framework_TestCase{ 
  3.     public function testPushAndPop(){ 
  4.       $stack = array(); 
  5.       $this->assertEquals(0,count($stack)); 
  6.       array_push($stack,'foo'); 
  7.       //断言插入数据到$stack数组后值是否等于1 
  8.       $this->assertEquals(1,count($stack)); 
  9.     } 
  10.     /** 
  11.      *定义test标签声明该方法是测试方法 
  12.      *@test 
  13.      ***/ 
  14.     public function indexEquals(){ 
  15.       $stack = array(1,2,3,4); 
  16.       //断言$stack[0]等于2 
  17.       $this->assertEquals(2,$stack[0]); 
  18.     } 
  19.   } 
  20. ?> 

3. phpunit运行文件

  1. [root@dongzi phpunit_test]# phpunit UnitTest.php 
  2. PHPUnit 5.6.1 by Sebastian Bergmann and contributors. 
  3. .F                                 2 / 2 (100%) 
  4. Time: 82 ms, Memory: 6.75MB 
  5. There was 1 failure: 
  6. 1) UnitTest::indexEquals 
  7. Failed asserting that 1 matches expected 2. 
  8. /wwwroot/phpunit_test/UnitTest.php:18 
  9. FAILURES! 
  10. Tests: 2, Assertions: 3, Failures: 1. 

结果显示测试php文件中共运行两个模块,有一个模块错误

错误测试方法名为indexEquals报错行为18行。

因为因为stack等于0不等于断言的1,所以报错,定位错误成功。

Tags: phpunit PHP单元测试

分享到: