wiki.techinc.nl/tests/phpunit/suites/ExtensionsTestSuite.php
X! d0ee386dca NewDBTest does not need the function anymore.
Fixed bug that caused a catchable fatal error (fix from r79117)
2010-12-28 18:47:09 +00:00

33 lines
840 B
PHP

<?php
/**
* This test suite runs unit tests registered by extensions.
* See http://www.mediawiki.org/wiki/Manual:Hooks/UnitTestsList for details of how to register your tests.
*/
class ExtensionsTestSuite extends PHPUnit_Framework_TestSuite {
public function __construct() {
parent::__construct();
$files = array();
wfRunHooks( 'UnitTestsList', array( &$files ) );
foreach ( $files as $file ) {
$this->addTestFile( $file );
}
if ( !count( $files ) ) {
$this->addTest( new DummyExtensionsTest( 'testNothing' ) );
}
}
public static function suite() {
return new self;
}
}
/**
* Needed to avoid warnings like 'No tests found in class "ExtensionsTestSuite".'
* when no extensions with tests are used.
*/
class DummyExtensionsTest extends PHPUnit_Framework_TestCase {
public function testNothing() {
}
}