yii是基于測試驅動的,而zend studio是一個好用的ide。集成就是必須的。
創(chuàng)新互聯建站是一家專業(yè)從事成都網站設計、網站制作、外貿營銷網站建設、網頁設計的品牌網絡公司。如今是成都地區(qū)具影響力的網站設計公司,作為專業(yè)的成都網站建設公司,創(chuàng)新互聯建站依托強大的技術實力、以及多年的網站運營經驗,為您提供專業(yè)的成都網站建設、營銷型網站建設及網站設計開發(fā)服務!
本文適合喜歡使用ide的開發(fā)者,vim用戶或者文本編輯器使用者請忽略。
本文使用的是最新的zend studio (版本 10.0.0)官網下載
yii本身沒啥可說的,主要還是phpunit相關的內容。
創(chuàng)建完項目,寫一個簡單的testcase。
[php]
require_once 'test\CTestCase.php';
/**
* Task test case.
*/
class TaskTest extends CTestCase {
public function testNewArrayIsEmpty()
{
$fixture = array();
$this->assertEquals(0, sizeof($fixture));
}
}
[/php]
在 tests 目錄上直接 run as phpunit test
可以運行,報錯:No test executed, Either a fatal error occurred, the launch was stopped manually or the script execution was halted with a ‘die’/'exit’ statement.
查看輸出:require_once(): Failed opening required 'PHPUnit/Extensions/SeleniumTestCase.php' (include_path='.;C:\Program Files (x86)\Zend\Zend Studio 10.0.0\plugins\com.zend.php.phpunit_10.0.0.201210220951\resources\library\3.6.10\;...........
原因:phpunit默認并沒有Selenium的擴展
解決辦法:
使用自己的pear安裝的phpunit
下載一個Selenium的擴展,即可.(下載地址)解壓到phpunit目錄(就是上面輸出里面的地址)的Extensions
再次運行,正常