aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/entities.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-03 02:02:10 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-03 02:02:10 +0000
commit34be1e3da604974659a9128f9d1901bd663930a1 (patch)
tree7442be662983ae6007dc098491e5d38605417402 /engine/tests/entities.php
parent51e6efeecb3122e46793a703104ff9b4ec8c4ab8 (diff)
downloadelgg-34be1e3da604974659a9128f9d1901bd663930a1.tar.gz
elgg-34be1e3da604974659a9128f9d1901bd663930a1.tar.bz2
Moved core tests into tests/core.
Fixed typo in skeleton and entities tests. Only run tests in debug mode. git-svn-id: http://code.elgg.org/elgg/trunk@3507 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/tests/entities.php')
-rw-r--r--engine/tests/entities.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/engine/tests/entities.php b/engine/tests/entities.php
deleted file mode 100644
index efa8426dd..000000000
--- a/engine/tests/entities.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-
-class ElggCoreEntityTest extends ElggCoreUnitTest {
-
- public function __construct() {
-
- }
-
- public function setUp() {
-
-
- }
-
- public function tearDown() {
-
-
- }
-
- public funciton __destruct() {
-
-
- }
-
- public function testElggEntityConstructor() {
- $this->assertTrue(FALSE);
- }
-}
-
-// ElggEntity is an abstract class with no abstact methods.
-class ElggEntityTest extends ElggEntity { }