phpunit測試成功phpunit測試實踐程式碼

兔子想飛發表於2015-12-13

16:12 2015/12/8
phpunit測試成功,程式碼寫在www目錄下,以類名命名程式碼檔案,我的檔名為

ArrayTest.php,類名為ArrayTest,內部寫了簡單的測試程式碼:
<?php
// require_once `PHPUnit/Autoload.php`;
// require_once `ArrayTeller.class.php`;
// require_once `PHPUnit/Framework.php`;

class ArrayTest extends PHPUnit_Framework_TestCase
{
public function testNewArrayIsEmpty()
{
// 建立陣列fixture。
$fixture = array();

// 斷言陣列fixture的尺寸是0。
$this->assertEquals(0, sizeof($fixture));
}
/**
*定義test標籤宣告該方法的測試方法
*@test
*/
public function indexEquals()
{
// 建立陣列fixture。
$stack = array(1, 2, 3);

// 斷言陣列fixture的尺寸是0。
$this->assertEquals(2, $stack[1]);
}
}
,然後
cmd的DOS視窗進入www目錄下,
執行phpunit ArrayTest.php,回車執行即可
終於成功了


相關文章