phpunit运行单元测试

    xiaoxiao2021-03-25  4

    安装phpunit.phar (1)环境需求 php5.6 + (2)下载phpunit.phar 下载地址下载phpunit.phar (3)安装配置phpunit 将下载的文件重命名成phpunit.phar,放入任意文件夹下(如d:/phpunit) 将phpunit.phar的路径讲(如:d:/phpunit)加入到系统环境变量(桌面->我的电脑->右键->属性->系统高级设置->环境变量->找到系统环境变量的path->最后面添加’;’->然后加上你要添加的路径) 将php的路径添加到path环境变量(如我的是d:/wamp/bin/php),步骤同上 win+r 输入cmd运行 切换到你的phpunit的路径 然后运行 echo @php "%~dp0phpunit.phar" %* > phpunit.cmd 重新打开 win+R 运行phpunit -version 如果出现以下情况说明运行成功 到这里phpunit就安装成功了 ,下面是phpunit的简单测试案例php的第一个小测试案例 math.class.php数学类 里面有加法和减法 <?php class math{ public function add($num1,$num2){//加法 return $num1+$num2; } public function sub($num1,$num2){//减法 return $num1-$num2; } }

    现在开始编写他的测试类

    <?php use PHPUnit\Framework\TestCase; //引入phpunit include '.\math.class.php';//引入数学类 根据自己的路径写 class MathTest extends TestCase{ //所有的测试类必须继承TestCase类 public function testadd() { $m= new math(); $this->assertEquals(5, $m->add(2,3)); //断言测试 5为期望值 $m->add(2,3)为你测试的方法 } }
    转载请注明原文地址: https://ju.6miu.com/read-200185.html

    最新回复(0)