我想知道我必须在我的测试目录中做什么才能停止使用 phpunit SetUp.php 并且只执行 phpunit 并让它运行该目录中的所有测试?
我的目录是:
- 测试
- 设置.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));
}
}
想法?