diff options
Diffstat (limited to 'engine/tests')
-rw-r--r-- | engine/tests/entities.php | 19 | ||||
-rw-r--r-- | engine/tests/test_skeleton.php | 49 |
2 files changed, 68 insertions, 0 deletions
diff --git a/engine/tests/entities.php b/engine/tests/entities.php index 76478802b..efa8426dd 100644 --- a/engine/tests/entities.php +++ b/engine/tests/entities.php @@ -3,6 +3,25 @@ class ElggCoreEntityTest extends ElggCoreUnitTest { + public function __construct() { + + } + + public function setUp() { + + + } + + public function tearDown() { + + + } + + public funciton __destruct() { + + + } + public function testElggEntityConstructor() { $this->assertTrue(FALSE); } diff --git a/engine/tests/test_skeleton.php b/engine/tests/test_skeleton.php new file mode 100644 index 000000000..29dc01499 --- /dev/null +++ b/engine/tests/test_skeleton.php @@ -0,0 +1,49 @@ +<?php +/** + * Elgg Test Skeleton + * + * @package Elgg + * @subpackage Test + * @author Curverider Ltd + * @link http://elgg.org/ + */ +class ElggCoreSkeletonTest extends ElggCoreUnitTest { + + /** + * Called before each test object. + */ + public function __construct() { + + } + + /** + * Called before each test method. + */ + public function setUp() { + + + } + + /** + * Called after each test method. + */ + public function tearDown() { + + + } + + /** + * Called after each test object. + */ + public funciton __destruct() { + + + } + + /** + * A basic test that will be called and fail. + */ + public function testElggEntityConstructor() { + $this->assertTrue(FALSE); + } +} |