背景
我正在使用 Yii 框架,并且刚刚开始为我的项目创建一些单元测试。我正在尝试通过命令行运行我的测试。
$cd www/site/webapp/protected/tests
$phpunit --verbose --colors unit/TaxRateTest.php
问题
我不断收到奇怪的回复,我不确定,也不知道如何解决。它似乎没有运行我的测试,而是调用了 Yii 命令运行程序。
Yii command runner (based on Yii v1.1.14-dev)
Usage: /usr/local/bin/phpunit <command-name> [parameters...]
The following commands are available:
- message
- migrate
- shell
- webapp
To see individual command help, use the following:
/usr/local/bin/phpunit help <command-name>
单元测试类
class TaxRateTest extends CDbTestCase {
public $fixtures = array(
'organisation' => 'Organisation',
);
public function testPopulateTaxRateTable() {
$organisation = New Organisation();
$organisation->display_name = "Test Organisation";
$organisation->country_id = 1;
$organisation->plan_id = Yii::app()->params['default_plan_id'];
$organisation->save();
$tax_rates = TaxRate::model()->findAllByAttributes(array('organisation_id'=>$organisation->id));
$this->assertEquals(count(TaxAccounts::$accounts), count($tax_rates));
//setup the default tax accounts
//TaxAccounts::initialize($this->id);
}
}
问题
我究竟做错了什么?我应该如何运行我的测试?