PHP單元測試利器 PHPUNIT深入用法(二)第1/2頁

來源:互聯網
上載者:User

1、markTestSkipped和markTestIncomplete

  在phpunit中,有兩個有用的方法markTestSkipped和markTestIncomplete。它們能允許你編寫的單元測試中不單是只有通過和失敗兩種結果。markTestSkipped能讓PHPUNIT不去執行某個已經編寫好的測試方法。舉個例子說明,比如下面的程式:

<?php
public function testThisMightHaveADb()
{
$myObject->createObject();
try {
$db = new Database();
$this->assertTrue($db->rowExists());
} catch (DatabseException $e) {
$this->markTestSkipped('This test was skipped because there was a database problem');
}
}
?>

  在上面的程式中,是一個串連資料庫後,判斷資料是否存在的測試方法,但如果考慮資料庫的串連異常的話,則應該在拋出異常時,使用markTestSkipped指出該測試方法應該是被忽略的,因為出現了異常,而注意的時,此時有可能你寫的代碼是正確的,只不過是出現了異常而已,這樣phpunit在輸出時就不會只是簡單的輸出fail。

  而markTestIncomplete也有點類似,但有點不同的是,它是當開發人員在編寫一個未完成的測試方法時使用的,標記出某個測試方法還沒編寫完成,同樣測試結果也不會是fail,只是告訴phpunit這個測試方法還沒編寫完成而已,例子如下:

<?php
public function testAreNotEnoughHours()
{
$this->markTestIncomplete("There aren't enough hours in the day to have my tests go green");
$trueVariable = true;
$this->assertTrue($trueVariable);
}
?>

  2、更深入瞭解phpunit中的斷言

  在上一篇文章中,已經基本講解了一些基本的phpunit中的斷言的使用,這裡以一個例子,下面是一個類的代碼:

<?php
class Testable
{
public $trueProperty = true;
public $resetMe = true;
public $testArray = array(
'first key' => 1,
'second key' => 2
);
private $testString = "I do love me some strings";
public function __construct()
{
}
public function addValues($valueOne,$valueTwo) {
return $valueOne+$valueTwo;
}
public function getTestString()
{
return $this->testString;
}
}
?>

  我們編寫的單元測試代碼初步的架構如下:

<?php
class TestableTest extends PHPUnit_Framework_TestCase
{
private $_testable = null;
public function setUp()
{
$this->_testable = new Testable();
}
public function tearDown()
{
$this->_testable = null;
}
/** test methods will go here */
}
?>

  在上一篇文章中,已經介紹了setUp方法和tearDown方法,這裡的setUp方法中,建立了Testable()執行個體並儲存在變數$_testable中,而在tearDown方法中,銷毀了該對象。

  接下來,開始編寫一些斷言去測試,首先看assertTrue和assertFalase:

<?php
public function testTruePropertyIsTrue()
{
$this->assertTrue($this->_testable->trueProperty,"trueProperty isn't true");
}
public function testTruePropertyIsFalse()
{
$this->assertFalse($this->_testable->trueProperty, "trueProperty isn't false");
}
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.