3 use MediaWiki\Installer\WebInstaller
;
4 use MediaWiki\Installer\WebInstallerOutput
;
6 class WebInstallerOutputTest
extends MediaWikiIntegrationTestCase
{
8 * @covers \MediaWiki\Installer\WebInstallerOutput::getCSS
10 public function testGetCSS() {
11 $_SERVER['DOCUMENT_ROOT'] = __DIR__
. '../../../';
12 $installer = $this->createMock( WebInstaller
::class );
13 $out = new WebInstallerOutput( $installer );
14 $css = $out->getCSS();
15 $this->assertStringContainsString(
18 'CSS for installer can be generated'