/**
* Elgg Test Skeleton
*
+ * Plugin authors: copy this file to your plugin's test directory. Register an Elgg
+ * plugin hook and function similar to:
+ *
+ * register_plugin_hook('unit_test', 'system', 'my_new_unit_test');
+ *
+ * function my_new_unit_test($hook, $type, $value, $params) {
+ * $value[] = "path/to/my/unit_test.php";
+ * return $value;
+ * }
+ *
* @package Elgg
* @subpackage Test
* @author Curverider Ltd
public function __construct() {
parent::__construct();
- // all code should come after here
+ // all __construct() code should come after here
}
/**
* Called after each test object.
*/
public function __destruct() {
- // all code should go above here
+ // all __destruct() code should go above here
parent::__destruct();
}
/**
* A basic test that will be called and fail.
*/
- public function testElggEntityConstructor() {
+ public function testFailure() {
$this->assertTrue(FALSE);
}
}