本文整理汇总了PHP中ElggCoreUnitTest::__destruct方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggCoreUnitTest::__destruct方法的具体用法?PHP ElggCoreUnitTest::__destruct怎么用?PHP ElggCoreUnitTest::__destruct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ElggCoreUnitTest
的用法示例。
在下文中一共展示了ElggCoreUnitTest::__destruct方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
$this->user->delete();
$this->user2->delete();
$this->apikey->delete();
elgg_set_ignore_access($this->ia);
// all __destruct() code should go above here
parent::__destruct();
}
示例2: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
global $CONFIG;
foreach ($this->entities as $e) {
$e->delete();
}
// manually remove subtype entries since there is no way
// to using the API.
$subtype_arr = array();
foreach ($this->subtypes as $type => $subtypes) {
foreach ($subtypes as $subtype) {
remove_subtype($type, $subtype);
}
}
parent::__destruct();
}
示例3: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
global $CONFIG;
$this->swallowErrors();
foreach ($this->entities as $e) {
$e->delete();
}
// manually remove subtype entries since there is no way
// to using the API.
$subtype_arr = array();
foreach ($this->subtypes as $type => $subtypes) {
foreach ($subtypes as $subtype) {
$subtype_arr[] = "'{$subtype}'";
}
}
$subtype_str = implode(',', $subtype_arr);
$q = "DELETE FROM {$CONFIG->dbprefix}entity_subtypes WHERE subtype IN ({$subtype_str})";
delete_data($q);
parent::__destruct();
}
示例4: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
elgg_set_ignore_access($this->ia);
// all __destruct() code should go above here
parent::__destruct();
}
示例5: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
$this->user->delete();
// all __destruct() code should go above here
parent::__destruct();
}
示例6: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
$this->object->delete();
parent::__destruct();
}
示例7: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
// all __destruct() code should go above here
parent::__destruct();
}
示例8: __destruct
public function __destruct()
{
parent::__destruct();
remove_subtype('object', 'elgg_entity_test_subtype');
}