本文整理汇总了PHP中OxidTestCase::teardown方法的典型用法代码示例。如果您正苦于以下问题:PHP OxidTestCase::teardown方法的具体用法?PHP OxidTestCase::teardown怎么用?PHP OxidTestCase::teardown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OxidTestCase
的用法示例。
在下文中一共展示了OxidTestCase::teardown方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
/**
* Tear down the fixture.
*
* @return null
*/
protected function tearDown()
{
$this->cleanUpTable('oxactions');
$this->cleanUpTable('oxattribute');
$this->cleanUpTable('oxarticles');
$this->cleanUpTable('oxcategories');
$this->cleanUpTable('oxdiscount');
$this->cleanUpTable('oxnews');
$this->cleanUpTable('oxorder');
//clean it
oxDB::getDb()->execute('delete from oxactions where oxtitle like "test%"');
oxDB::getDb()->execute('delete from oxnews where oxshortdesc like "oxbasetest%"');
oxRemClassModule('modoxCacheAdminForBase');
oxRemClassModule('modoxCacheForBase');
parent::teardown();
}