aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/core/entities.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/tests/core/entities.php')
-rw-r--r--engine/tests/core/entities.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/engine/tests/core/entities.php b/engine/tests/core/entities.php
new file mode 100644
index 000000000..e8013b1fc
--- /dev/null
+++ b/engine/tests/core/entities.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * Elgg Test ElggEntities
+ *
+ * @package Elgg
+ * @subpackage Test
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
+class ElggCoreEntityTest 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 function __destruct() {
+
+
+ }
+
+ /**
+ * A basic test that will be called and fail.
+ */
+ public function testElggEntityConstructor() {
+ $this->assertTrue(FALSE);
+ }
+}
+
+// ElggEntity is an abstract class with no abstact methods.
+class ElggEntityTest extends ElggEntity { }