phpunit SetUp.php への移動を停止し、phpunit を実行して、そのディレクトリ内のすべてのテストを実行するには、tests ディレクトリ内で何をしなければならないのか疑問に思っています。
私のディレクトリは次のとおりです。
- テスト
- セットアップ.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));
}
}
考え?