本文整理汇总了PHP中CDbTestCase::tearDown方法的典型用法代码示例。如果您正苦于以下问题:PHP CDbTestCase::tearDown方法的具体用法?PHP CDbTestCase::tearDown怎么用?PHP CDbTestCase::tearDown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CDbTestCase
的用法示例。
在下文中一共展示了CDbTestCase::tearDown方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
public function tearDown()
{
parent::tearDown();
if (file_exists($this->_fileName)) {
unlink($this->_fileName);
}
}
示例2: tearDown
public function tearDown()
{
parent::tearDown();
// Remove created temp files.
$filePattern = Yii::app()->getRuntimePath() . "/aop*.tmp";
foreach (glob($filePattern) as $filename) {
unlink($filename);
}
}
示例3: tearDown
public function tearDown()
{
parent::tearDown();
Yii::app()->setModules($this->orig_modules);
Yii::setPathOfAlias('ModuleAPITestNS', null);
Yii::setPathOfAlias('application.modules.TestModule.components', null);
if ($this->test_event_type) {
$this->test_event_type->noVersion()->delete();
}
}
示例4: tearDown
protected function tearDown()
{
// /*delete all productOrders*/
ProductOrders::model()->deleteAll();
/*delete all products*/
Product::model()->deleteAll();
/*delete all orders*/
Orders::model()->deleteAll();
parent::tearDown();
}
开发者ID:kevindaus,项目名称:Order-Billing-Inventory-System-Marcials-Furniture,代码行数:10,代码来源:WeeklySalesReportTest.php
示例5: tearDown
public function tearDown()
{
parent::tearDown();
@unlink($this->_fileName);
// Get parent directory names
$dirName = dirname($this->_fileName);
$outerDirName = dirname($dirName);
@rmdir($dirName);
@rmdir($outerDirName);
}
示例6: tearDown
protected function tearDown()
{
parent::tearDown();
// TODO: Change the autogenerated stub
}
示例7: tearDown
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
parent::tearDown();
}
示例8: tearDown
public function tearDown()
{
$this->destroyMockTableAndData('test_element_mock_table');
parent::tearDown();
}
示例9: tearDown
public function tearDown()
{
// try to replace mocks with original components in case mocks were set during test case
TestingAuxLib::restoreX2WebUser();
TestingAuxLib::restoreX2AuthManager();
TestingAuxLib::restoreController();
self::$skipAllTests = false;
self::$loadFixtures = X2_LOAD_FIXTURES;
self::$loadFixturesForClassOnly = X2_LOAD_FIXTURES_FOR_CLASS_ONLY;
if (isset($this->_oldSession)) {
$_SESSION = $this->_oldSession;
}
return parent::tearDown();
}
示例10: tearDown
public function tearDown()
{
// try to replace mocks with original components in case mocks were set during test case
TestingAuxLib::restoreX2WebUser();
TestingAuxLib::restoreX2AuthManager();
return parent::tearDown();
}
示例11: tearDown
public function tearDown()
{
Yii::app()->setComponent('service', $this->orig_svcman);
parent::tearDown();
}
示例12: tearDown
public function tearDown()
{
parent::tearDown();
$clearAllTempTablesmethod = $this->controller->getMethod('clearAllTempTables');
$clearAllTempTablesmethod->setAccessible(true);
$clearAllTempTablesmethod->invoke($this->mock);
}
示例13: tearDown
public function tearDown()
{
// try to replace mocks with original components in case mocks were set during test case
TestingAuxLib::restoreX2WebUser();
TestingAuxLib::restoreX2AuthManager();
TestingAuxLib::restoreController();
self::$skipAllTests = false;
self::$loadFixtures = X2_LOAD_FIXTURES;
self::$loadFixturesForClassOnly = X2_LOAD_FIXTURES_FOR_CLASS_ONLY;
if (isset($this->_oldSession)) {
$_SESSION = $this->_oldSession;
}
if (X2_TEST_DEBUG_LEVEL > 0) {
$timer = TestingAuxLib::getCaseTimer();
TestingAuxLib::log("time elapsed for test case: {$timer->stop()->getTime()}");
}
return parent::tearDown();
}
示例14: tearDown
public function tearDown()
{
Yii::app()->setComponent('service', $this->original_service_manager);
parent::tearDown();
}
示例15: tearDown
protected function tearDown()
{
parent::tearDown();
fwrite(STDERR, ' tearDown ');
// your code....
}