This changeset lays down the basic groundwork required to implement T89432 and related tickets and is based on exploration done at the Prague Hackathon. The goal is to identify tests in MediaWiki core that can be run without having to install & configure MediaWiki and its dependencies, and provide a way to execute these tests via the standard phpunit entry point, allowing for faster development and integration with existing tooling like IDEs. This changeset creates a new subdirectory under phpunit/ and organizes it into a separate test suite. The environment for this suite is set up via a PHPUnit bootstrap file without a custom entry point. For B/C, this directory is also registered in suite.xml, to ensure that existing CI jobs still pick up tests in the new suite. For initial testing, a single test class, PasswordFactoryTest, was moved to this new suite. You can run the new suite using the follwoing command: $ vendor/bin/phpunit -d memory_limit=512M -c tests/phpunit/unit-tests.xml Bug: T84948 Bug: T89432 Bug: T87781 Change-Id: I69b92db3e70093570e05cc0a64c7780a278b321a
29 lines
994 B
PHP
29 lines
994 B
PHP
<?php
|
|
/**
|
|
* Base class for MediaWiki unit tests.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
* @ingroup Testing
|
|
*/
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class MediaWikiUnitTestCase extends TestCase {
|
|
use PHPUnit4And6Compat;
|
|
use MediaWikiCoversValidator;
|
|
}
|