]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Added more info to the test.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 2 Oct 2009 22:09:37 +0000 (22:09 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Fri, 2 Oct 2009 22:09:37 +0000 (22:09 +0000)
Added a test skeleton.

git-svn-id: http://code.elgg.org/elgg/trunk@3506 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/tests/entities.php
engine/tests/test_skeleton.php [new file with mode: 0644]

index 76478802b544e8d7086be16fd72abde3dbe1283a..efa8426dd3f7d1bc65380185c862db6744090a37 100644 (file)
@@ -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 (file)
index 0000000..29dc014
--- /dev/null
@@ -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);
+       }
+}