aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/entities.php
diff options
context:
space:
mode:
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 { }