diff options
Diffstat (limited to 'engine/tests/elgg_unit_test.php')
-rwxr-xr-x | engine/tests/elgg_unit_test.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/engine/tests/elgg_unit_test.php b/engine/tests/elgg_unit_test.php index d9841099b..70f8788a0 100755 --- a/engine/tests/elgg_unit_test.php +++ b/engine/tests/elgg_unit_test.php @@ -1,12 +1,28 @@ <?php +/** + * Elgg Core Unit Tester + * + * This class is to be extended by all Elgg unit tests. As such, any method here + * will be available to the tests. + */ abstract class ElggCoreUnitTest extends UnitTestCase { + /** + * Class constructor. + * + * A simple wrapper to call the parent constructor. + */ public function __construct() { parent::__construct(); } + /** + * Class destructor. + * + * The parent does not provide a destructor, so including an explicit one here. + */ public function __destruct() { } |