--- /dev/null
+<?php
+
+
+class ElggCoreEntityTest extends ElggCoreUnitTest {
+
+ public function testElggEntityConstructor() {
+ $this->assertTrue(FALSE);
+ }
+}
+
+// ElggEntity is an abstract class with no abstact methods.
+class ElggEntityTest extends ElggEntity { }
$suite = new TestSuite( 'Elgg Core Unit Tests' );
+// emit a hook to pull in all tests
+$test_files = trigger_plugin_hook('unit_test', 'system', null, array());
+foreach ($test_files as $file) {
+ $suite->addTestFile($file);
+}
+
if (!$CONFIG->debug) {
if ( TextReporter::inCli() )
{