2

我想回滚在 symfony/panther 测试中进行的所有查询。

使用普通的 WebTestCase 我可以通过

protected function setUp()
{
    parent::setUp();
    $this->client = static::createClient();
    $this->client->disableReboot();
    $this->connection = $this->client->getContainer()->get('doctrine')->getConnection();
    $this->connection->beginTransaction();
    $this->connection->setAutoCommit(false);
}
protected function tearDown()
{
    parent::tearDown();
    if ($this->connection->isTransactionActive()) {
        $this->connection->rollback();
    }
}

由于没有方法,如何与Panther$client->disableReboot()实现相同的效果?

4

0 回答 0