当前位置: 首页>>代码示例>>PHP>>正文


PHP ElggCoreUnitTest类代码示例

本文整理汇总了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');
 }
开发者ID:nooshin-mirzadeh,项目名称:web_2.0_benchmark,代码行数:8,代码来源:ElggCorePluginsAPITest.php

示例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();
 }
开发者ID:digecon,项目名称:elgg_web_services,代码行数:12,代码来源:blog.php

示例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();
 }
开发者ID:nooshin-mirzadeh,项目名称:web_2.0_benchmark,代码行数:19,代码来源:ElggCoreGetEntitiesBaseTest.php

示例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();
 }
开发者ID:portokallidis,项目名称:Metamorphosis-Meducator,代码行数:23,代码来源:entity_getter_functions.php

示例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();
 }
开发者ID:sephiroth88,项目名称:Elgg,代码行数:9,代码来源:ElggCoreRegressionBugsTest.php

示例6: __destruct

 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->user->delete();
     // all __destruct() code should go above here
     parent::__destruct();
 }
开发者ID:gzachos,项目名称:elgg_ellak,代码行数:9,代码来源:ElggCoreAccessSQLTest.php

示例7: __destruct

 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->object->delete();
     parent::__destruct();
 }
开发者ID:rasul,项目名称:Elgg,代码行数:8,代码来源:metastrings.php

示例8: __destruct

 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     // all __destruct() code should go above here
     parent::__destruct();
 }
开发者ID:thehereward,项目名称:Elgg,代码行数:8,代码来源:ElggCoreHelpersTest.php

示例9: __destruct

 public function __destruct()
 {
     parent::__destruct();
     remove_subtype('object', 'elgg_entity_test_subtype');
 }
开发者ID:Twizanex,项目名称:GuildWoW,代码行数:5,代码来源:ElggEntityTest.php


注:本文中的ElggCoreUnitTest类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。