mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
71bd192002
Includes a few other smaller cleanups that aren't worth a separate patch, in my opinion. Change-Id: I42d6e70ef132bfc2cf606164e2e62becb1f915df
16 lines
382 B
PHP
16 lines
382 B
PHP
<?php
|
|
namespace MediaWiki\Extension\Math\Tests;
|
|
|
|
use MediaWiki\Extension\Math\Math;
|
|
use MediaWiki\Extension\Math\MathConfig;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\Math
|
|
*/
|
|
class MathIntegrationTest extends \MediaWikiIntegrationTestCase {
|
|
public function testGetMathConfigNull() {
|
|
$config = Math::getMathConfig();
|
|
$this->assertInstanceOf( MathConfig::class, $config );
|
|
}
|
|
}
|