aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-02 22:09:37 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-02 22:09:37 +0000
commit51e6efeecb3122e46793a703104ff9b4ec8c4ab8 (patch)
tree875e3b9f870a1e4494fce63281677708e2cd2162
parentedd26a0760174705dbd01a78936788ddd0fbb93d (diff)
downloadelgg-51e6efeecb3122e46793a703104ff9b4ec8c4ab8.tar.gz
elgg-51e6efeecb3122e46793a703104ff9b4ec8c4ab8.tar.bz2
Added more info to the test.
Added a test skeleton. git-svn-id: http://code.elgg.org/elgg/trunk@3506 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--engine/tests/entities.php19
-rw-r--r--engine/tests/test_skeleton.php49
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);
+ }
+}