PHP测试框架PHPUnit组织测试操作示例
程序员文章站
2022-04-28 09:49:19
本文实例讲述了php测试框架phpunit组织测试操作。分享给大家供大家参考,具体如下:
首先是目录结构
源文件夹为 src/
测试文件夹为 tests/
us...
本文实例讲述了php测试框架phpunit组织测试操作。分享给大家供大家参考,具体如下:
首先是目录结构
源文件夹为 src/
测试文件夹为 tests/
user.php
<?php class errorcode { const name_is_null = 0; } class user { public $name; public function __construct($name) { $this->name=$name; } public function isempty() { try{ if(empty($this->name)) { throw new exception('its null',errorcode::name_is_null); } }catch(exception $e){ return $e->getmessage(); } return 'welcome '.$this->name; } }
对应的单元测试文件 usertest.php
<?php use phpunit\framework\testcase; class usertest extends testcase { protected $user; public function setup() { $this->user = new user(''); } public function testisempty() { $this->user->name='mark'; $result =$this->user->isempty(); $this->assertequals('welcome mark',$result); $this->user->name=''; $results =$this->user->isempty(); $this->assertequals('its null',$results); } }
第二个单元测试代码因为要引入 要测试的类 这里可以用 自动载入 避免文件多的话 太多include
所以在src/ 文件夹里写 autoload.php
<?php function __autoload($class){ include $class.'.php'; } spl_autoload_register('__autoload');
当需要user类时,就去include user.php
。写完__autoload()
函数之后要用spl_autoload_register()
注册上。
虽然可以自动载入,但是要执行的命令变得更长了。
打开cmd命令如下
phpunit --bootstrap src/autoload.php tests/usertest
所以我们还可以在根目录写一个配置文件phpunit.xml来为项目指定bootstrap,这样就不用每次都写在命令里了。
phpunit.xml
<phpunit bootstrap="src/autoload.php"> </phpunit>
然后
打开cmd命令 执行moneytest 命令如下
phpunit tests/usertest
打开cmd命令 执行tests下面所有的文件 命令如下
phpunit tests
更多关于php相关内容感兴趣的读者可查看本站专题:《php错误与异常处理方法总结》、《php字符串(string)用法总结》、《php数组(array)操作技巧大全》、《php运算与运算符用法总结》、《php网络编程技巧总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》及《php优秀开发框架总结》
希望本文所述对大家php程序设计有所帮助。