本文整理匯總了PHP中yii\codeception\TestCase::tearDown方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestCase::tearDown方法的具體用法?PHP TestCase::tearDown怎麽用?PHP TestCase::tearDown使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類yii\codeception\TestCase
的用法示例。
在下文中一共展示了TestCase::tearDown方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: tearDown
public function tearDown()
{
Yii::$app->cache->flush();
parent::tearDown();
}
示例2: tearDown
protected function tearDown()
{
unlink($this->getMessageFile());
parent::tearDown();
}
示例3: tearDown
protected function tearDown()
{
Yii::$app->user->logout();
parent::tearDown();
}
示例4: tearDown
public function tearDown()
{
Yii::$app->getDb()->createCommand()->delete('test_auto_timestamp')->execute();
Yii::$app->getDb()->close();
parent::tearDown();
}
示例5: tearDown
protected function tearDown()
{
parent::tearDown();
}
示例6: tearDown
public function tearDown()
{
//data\Post::deleteAll();
parent::tearDown();
}
示例7: tearDown
protected function tearDown()
{
$this->redis->executeCommand('FLUSHDB');
parent::tearDown();
}
示例8: tearDown
/**
* @inheritdoc
*/
protected function tearDown()
{
$this->factory->workflowSourceNamespace = null;
parent::tearDown();
}
示例9: tearDown
protected function tearDown()
{
$this->model->delete();
parent::tearDown();
}
示例10: tearDown
/**
* @inheritdoc
*/
protected function tearDown()
{
$this->tester->deleteSaved();
parent::tearDown();
}
示例11: tearDown
protected function tearDown()
{
parent::tearDown();
unlink(__DIR__ . '/../fixtures/data/.env');
}
示例12: tearDown
protected function tearDown()
{
User::deleteAll('email = :email', [':email' => Commons::TEST_EMAIL]);
parent::tearDown();
}