wiki.techinc.nl/tests/phpunit/suites/ExtensionsTestSuite.php
Kunal Mehta e27ae6b5ec Convert more wfRunHooks() --> Hooks::run()
Change-Id: I1b1e3cb6871721fc05dda881a8020c9a5d30a514
2014-12-12 14:47:31 -08:00

47 lines
1.3 KiB
PHP

<?php
/**
* This test suite runs unit tests registered by extensions.
* See https://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();
$paths = array();
// Extensions can return a list of files or directories
Hooks::run( 'UnitTestsList', array( &$paths ) );
foreach ( $paths as $path ) {
if ( is_dir( $path ) ) {
// If the path is a directory, search for test cases.
// @since 1.24
$suffixes = array(
'Test.php',
);
$fileIterator = new File_Iterator_Facade();
$matchingFiles = $fileIterator->getFilesAsArray( $path, $suffixes );
$this->addTestFiles( $matchingFiles );
} else {
// Add a single test case or suite class
$this->addTestFile( $path );
}
}
if ( !count( $paths ) ) {
$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 MediaWikiTestCase {
public function testNothing() {
$this->assertTrue( true );
}
}