我在Symfony 1.4中有一个插件,我已经为他创建了一些测试,将它们放入ROOT/myPlugin/test/unit/MyTest.php
该插件是使用sfTaskExtraPlugin
生成的。
MyTest.php
的内容是:
<?php
require_once dirname(__FILE__).'/../bootstrap/unit.php';
$t = new lime_test(1);
$r = new My();
$v = $r->getSomething(2);
$t->is($v, true);
?>
当我运行./symfony test:unit Rights
时,回复为>> test no tests found
但是,如果我在MyTest.php
中复制ROOT/test/unit
文件,则./symfony test:unit Rights
命令正在运行。
该插件已在ProjectConfiguration.class.php
如果我在插件中编写测试,为什么测试不起作用?
答案 0 :(得分:2)
默认情况下不运行插件测试(有充分理由 - 为什么每次要测试应用程序时都希望为第三方插件运行测试?)。
像这样编辑ProjectConfiguration:
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enablePlugins('myPlugin');
}
public function setupPlugins()
{
$this->pluginConfigurations['myPlugin']->connectTests();
}
}
这将运行给定插件的测试以及项目。取自symfony.com, about testing plugins。