PHP单元测试利器 PHPUNIT深入用法(二)第1/2页

2015-01-24信息快讯网

在上一篇PHP单元测试利器:PHPUNIT初探文章中,我们对phpunit有了一个初步的认识,在本文中将继续深入讲解下phpunit中的一些用法。

1、markTestSkipped和markTestIncomplete

  在phpunit中,有两个有用的方法markTestSkipped和markTestIncomplete。它们能允许你编写的单元测试中不单是只有通过和失败两种结果。markTestSkipped能让PHPUNIT不去执行某个已经编写好的测试方法。举个例子说明,比如下面的程序:

PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网<?php
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
public function testThisMightHaveADb()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$myObject->createObject();
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
try {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
$db = new Database();
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
$this->assertTrue($db->rowExists());
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
catch (DatabseException $e) {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
$this->markTestSkipped('This test was skipped because there was a database problem');
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
?>

   在上面的程序中,是一个连接数据库后,判断数据是否存在的测试方法,但如果考虑数据库的连接异常的话,则应该在抛出异常时,使用markTestSkipped指出该测试方法应该是被忽略的,因为出现了异常,而注意的时,此时有可能你写的代码是正确的,只不过是出现了异常而已,这样phpunit在输出时就不会只是简单的输出fail。

  而markTestIncomplete也有点类似,但有点不同的是,它是当开发者在编写一个未完成的测试方法时使用的,标记出某个测试方法还没编写完成,同样测试结果也不会是fail,只是告诉phpunit这个测试方法还没编写完成而已,例子如下:

PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网<?php
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
public function testAreNotEnoughHours()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$this->markTestIncomplete("There aren't enough hours in the day to have my tests go green");
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$trueVariable = true;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$this->assertTrue($trueVariable);
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
?>

   2、更深入了解phpunit中的断言

  在上一篇文章中,已经基本讲解了一些基本的phpunit中的断言的使用,这里以一个例子,下面是一个类的代码:

PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网<?php
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
class Testable
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public $trueProperty = true;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public $resetMe = true;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public $testArray = array(
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
'first key' => 1,
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
'second key' => 2
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  );
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
private $testString = "I do love me some strings";
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public function __construct()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public function addValues($valueOne,$valueTwo) {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
return $valueOne+$valueTwo;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public function getTestString()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
return $this->testString;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
?>

   我们编写的单元测试代码初步的框架如下:

PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网<?php
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
class TestableTest extends PHPUnit_Framework_TestCase
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
private $_testable = null;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public function setUp()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
$this->_testable = new Testable();
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
public function tearDown()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  {
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网    
$this->_testable = null;
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  }
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
/** test methods will go here */
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
?>

   在上一篇文章中,已经介绍了setUp方法和tearDown方法,这里的setUp方法中,建立了Testable()实例并保存在变量$_testable中,而在tearDown方法中,销毁了该对象。

  接下来,开始编写一些断言去测试,首先看assertTrue和assertFalase:

PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网<?php
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
public function testTruePropertyIsTrue()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$this->assertTrue($this->_testable->trueProperty,"trueProperty isn't true");
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
public function testTruePropertyIsFalse()
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网{
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网  
$this->assertFalse($this->_testable->trueProperty, "trueProperty isn't false");
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网}
PHP单元测试利器 PHPUNIT深入用法(二)第1/2页_信息快讯网
?>

php下载文件的代码示例
PHP sprintf() 函数的应用(定义和用法)
php 对输入信息的进行安全过滤的函数代码
PHP删除数组中的特定元素的代码
PHP安全性漫谈
PHP Warning: PHP Startup: Unable to load dynamic library \ D:/php5/ext/php_mysqli.dll\
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
php提示undefined index的几种解决方法
PHP中将字符串转化为整数(int) intval() printf() 性能测试
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
一些需要禁用的PHP危险函数(disable_functions)
PHP测试程序运行时间的类
PHP Web木马扫描器代码 v1.0 安全测试工具
PHP中创建空文件的代码[file_put_contents vs touch]
php数组函数序列之array_push() 数组尾部添加一个或多个元素(入栈),返回新长度。
PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析
php array_push()数组函数:将一个或多个单元压入数组的末尾(入栈)
PHP导出MySQL数据到Excel文件(fputcsv)
php中将地址生成迅雷快车旋风链接的代码[测试通过]
php curl 登录163邮箱并抓取邮箱好友列表的代码(经测试)
PHP单元测试利器 PHPUNIT深入用法(三)第1/2页
PHP单元测试利器 PHPUNIT初探第1/2页
php下安装配置fckeditor编辑器的方法
PHP如何抛出异常处理错误
php中实现记住密码自动登录的代码
防止用户利用PHP代码DOS造成用光网络带宽
PHP的SQL注入实现(测试代码安全不错)
使用XDebug调试及单元测试覆盖率分析
PHP中删除变量时unset()和null的区别分析
php的日期处理函数及uchome的function_coomon中日期处理函数的研究
php !function_exists("T7FC56270E7A70FA81A5935B72EACBE29"))代码解密
php array_unique之后json_encode需要注意
php iconv() : Detected an illegal character in input string
smarty模板嵌套之include与fetch性能测试
PHP类中Static方法效率测试代码
php 随机记录mysql rand()造成CPU 100%的解决办法
PHP 模拟$_PUT实现代码
PHP array_push 数组函数
©2014-2024 dbsqp.com