aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/test_skeleton.php
diff options
context:
space:
mode:
authornickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-11-24 14:20:55 +0000
committernickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-11-24 14:20:55 +0000
commita7990d0195dfcdb205ecb45c373a1ba6d44d67aa (patch)
tree4ddac696d8977b08ebf83d05ae522edc333d4ebe /engine/tests/test_skeleton.php
parent03f508d642ded46975a8719db9406876d316d90b (diff)
downloadelgg-a7990d0195dfcdb205ecb45c373a1ba6d44d67aa.tar.gz
elgg-a7990d0195dfcdb205ecb45c373a1ba6d44d67aa.tar.bz2
Adding documentation to the unit test skeleton file.
git-svn-id: http://code.elgg.org/elgg/trunk@3706 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/tests/test_skeleton.php')
-rw-r--r--engine/tests/test_skeleton.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/engine/tests/test_skeleton.php b/engine/tests/test_skeleton.php
index 165ab0872..474cffce0 100644
--- a/engine/tests/test_skeleton.php
+++ b/engine/tests/test_skeleton.php
@@ -2,6 +2,16 @@
/**
* 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
@@ -15,7 +25,7 @@ class ElggCoreSkeletonTest extends ElggCoreUnitTest {
public function __construct() {
parent::__construct();
- // all code should come after here
+ // all __construct() code should come after here
}
/**
@@ -37,14 +47,14 @@ class ElggCoreSkeletonTest extends ElggCoreUnitTest {
* 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);
}
}