ElggCoreUnitTest::__construct PHP Méthode

__construct() public méthode

A simple wrapper to call the parent constructor.
public __construct ( )
    public function __construct()
    {
        parent::__construct();
    }

Usage Example

Exemple #1
0
 /**
  * Called before each test object.
  */
 public function __construct()
 {
     parent::__construct();
     $this->metastrings = array();
     $this->object = new ElggObject();
     $this->object->save();
 }
All Usage Examples Of ElggCoreUnitTest::__construct