ElggCoreUnitTest::__construct PHP Method

__construct() public method

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

Usage Example

Ejemplo n.º 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