mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 00:13:36 +00:00
70022c4cee
Instead of setting global configuration variables, we create a custom config object and all the other dependencies and pass them to the CommentParser instead of the defaults. Depends-On: I8d374b51511a2873dce646aa453c5e0e2c076a14 Change-Id: I9dfccc833d3e2695cf1d1f7bbee4b68eae9a8c25
12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\Tests;
|
|
|
|
use MediaWikiIntegrationTestCase;
|
|
|
|
abstract class IntegrationTestCase extends MediaWikiIntegrationTestCase {
|
|
|
|
use TestUtils;
|
|
|
|
}
|