diff options
Diffstat (limited to 'engine/tests/entities.php')
-rw-r--r-- | engine/tests/entities.php | 12 |
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 { } |