This class is to be extended by all Elgg unit tests. As such, any method here will be available to the tests.
Inheritance: extends UnitTestCase
 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');
 }
Ejemplo n.º 2
0
 /**
  * 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();
 }
 /**
  * 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();
 }
 /**
  * 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();
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     elgg_set_ignore_access($this->ia);
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 6
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->user->delete();
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 7
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->object->delete();
     parent::__destruct();
 }
Ejemplo n.º 8
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 9
0
 public function __destruct()
 {
     parent::__destruct();
     remove_subtype('object', 'elgg_entity_test_subtype');
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     parent::__destruct();
 }