aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/entities.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-02 21:59:32 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-02 21:59:32 +0000
commit13e62cb3c72c33042f0a30445b99500db7c765ee (patch)
tree204c82a93dd6b0987e2f8b56f2dbba69e170216e /engine/tests/entities.php
parent322bb9cd2be9e51422cb2b82684692e825c2bfb7 (diff)
downloadelgg-13e62cb3c72c33042f0a30445b99500db7c765ee.tar.gz
elgg-13e62cb3c72c33042f0a30445b99500db7c765ee.tar.bz2
Added unit tests.
git-svn-id: http://code.elgg.org/elgg/trunk@3504 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/tests/entities.php')
-rw-r--r--engine/tests/entities.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/engine/tests/entities.php b/engine/tests/entities.php
new file mode 100644
index 000000000..76478802b
--- /dev/null
+++ b/engine/tests/entities.php
@@ -0,0 +1,12 @@
+<?php
+
+
+class ElggCoreEntityTest extends ElggCoreUnitTest {
+
+ public function testElggEntityConstructor() {
+ $this->assertTrue(FALSE);
+ }
+}
+
+// ElggEntity is an abstract class with no abstact methods.
+class ElggEntityTest extends ElggEntity { }