| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | <?php/** * Elgg Test Skeleton * * Plugin authors: copy this file to your plugin's test directory. Register an Elgg * plugin hook and function similar to: * * elgg_register_plugin_hook_handler('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 */class ElggCoreSkeletonTest extends \ElggCoreUnitTest {	/**	 * Called before each test object.	 */	public function __construct() {		parent::__construct();				// all __construct() code should come after here	}	/**	 * Called before each test method.	 */	public function setUp() {	}	/**	 * Called after each test method.	 */	public function tearDown() {	}	/**	 * Called after each test object.	 */	public function __destruct() {		// all __destruct() code should go above here		parent::__destruct();	}	public function testFailure() {		$this->assertTrue(false);	}}
 |