我正在将 Symfony2 和 PHPUnit 与 Doctrine 一起使用并编写插件包。我有一个扩展 Symfony 的 WebTestCase 的 TestCase 类。
在 setUp 方法中,我需要创建一个用于测试的模式并加载一些固定装置。
我的代码(如下)正在构建一个应用程序内核,启动一个应用程序,然后运行几个命令来删除一个模式(如果它在那里),重新创建它并加载一些数据夹具。
我遇到的问题是,在应用程序上使用 run() 方法时,它只运行第一个命令,然后测试停止,标记为成功,没有错误或消息。
为了执行下一个命令,我需要推荐出第一个命令并再次运行测试。
显然,我想要的结果是每个方法都按顺序运行。
/**
* setUp
*
* @return void
**/
public function setUp()
{
parent::setUp();
$this->appKernel = $this->createKernel();
$this->appKernel->boot();
$this->application = new Application($this->appKernel);
$this->em = $this->appKernel->getContainer()->get('doctrine')->getManager();
$this->buildDb();
}
/**
* buildDb
* Builds the DB from the Entities in Acme\TestBundle\Entity
* @return void
**/
private function buildDb()
{
$this->application->run(new ArrayInput(array(
'doctrine:schema:drop',
'--force' => true
)));
$this->application->run(new ArrayInput(array(
'doctrine:schema:create'
)));
$this->application->run(new ArrayInput(array(
'doctrine:fixtures:load',
'--fixtures' => 'tests/SupportFiles/bundles/Acme/TestBundle/DataFixtures/Test'
)));
}