diff options
Diffstat (limited to 'engine/tests/elgg_unit_test.php')
-rwxr-xr-x | engine/tests/elgg_unit_test.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/engine/tests/elgg_unit_test.php b/engine/tests/elgg_unit_test.php new file mode 100755 index 000000000..79c3d375c --- /dev/null +++ b/engine/tests/elgg_unit_test.php @@ -0,0 +1,13 @@ +<?php + +abstract class ElggCoreUnitTest extends UnitTestCase +{ + public function __construct() + { + parent::__construct(); + } + + public function __destruct() + { + } +} |