本文整理汇总了PHP中ElggCoreUnitTest类的典型用法代码示例。如果您正苦于以下问题:PHP ElggCoreUnitTest类的具体用法?PHP ElggCoreUnitTest怎么用?PHP ElggCoreUnitTest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ElggCoreUnitTest类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
$this->manifest18 = new ElggPluginManifest(get_config('path') . 'engine/tests/test_files/plugin_18/manifest.xml', 'plugin_test_18');
$this->manifest17 = new ElggPluginManifest(get_config('path') . 'engine/tests/test_files/plugin_17/manifest.xml', 'plugin_test_17');
$this->package18 = new ElggPluginPackage(get_config('path') . 'engine/tests/test_files/plugin_18');
$this->package17 = new ElggPluginPackage(get_config('path') . 'engine/tests/test_files/plugin_17');
}
示例2: __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();
}
示例3: __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();
}
示例4: __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();
}
示例5: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
elgg_set_ignore_access($this->ia);
// all __destruct() code should go above here
parent::__destruct();
}
示例6: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
$this->user->delete();
// all __destruct() code should go above here
parent::__destruct();
}
示例7: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
$this->object->delete();
parent::__destruct();
}
示例8: __destruct
/**
* Called after each test object.
*/
public function __destruct()
{
// all __destruct() code should go above here
parent::__destruct();
}
示例9: __destruct
public function __destruct()
{
parent::__destruct();
remove_subtype('object', 'elgg_entity_test_subtype');
}