我想知道我必須在我的測試目錄中做什麼來停止進入phpunit SetUp.php,只是做phpunit並讓它運行該目錄中的所有測試?爲什麼PHP單元無法工作,除非我提供一個文件?
我的目錄是:
- 測試
- SetUp.php
類是:
class SetUp extends PHPUnit_Framework_TestCase {
protected $_wp_query;
public function setUp(){
parent::setUp();
global $wp_query;
if($this->_wp_query == null){
$this->_wp_query = $wp_query;
}
}
public function testIsArray(){
$this->assertTrue(is_array($this->_wp_query));
}
}
的思考?
+1 - 可以通過phpunit.xml配置文件中的目錄條目進行更改,但這是默認行爲 –