diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/tests/entities.php | 12 | ||||
| -rwxr-xr-x | engine/tests/suite.php | 6 | 
2 files changed, 18 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 { } diff --git a/engine/tests/suite.php b/engine/tests/suite.php index 5eed796ac..baf32481f 100755 --- a/engine/tests/suite.php +++ b/engine/tests/suite.php @@ -21,6 +21,12 @@ require_once( "$test_path/elgg_unit_test.php" );  $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() )  	{ | 
