mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
15 lines
362 B
PHP
15 lines
362 B
PHP
|
<?php
|
||
|
namespace MediaWiki\Extension\Math\Tests;
|
||
|
|
||
|
use MediaWiki\Extension\Math\Math;
|
||
|
|
||
|
/**
|
||
|
* @covers \MediaWiki\Extension\Math\Math
|
||
|
*/
|
||
|
class MathIntegrationTest extends \MediaWikiIntegrationTestCase {
|
||
|
public function testGetMathConfigNull() {
|
||
|
$config = Math::getMathConfig();
|
||
|
$this->assertInstanceOf( '\MediaWiki\Extension\Math\MathConfig', $config );
|
||
|
}
|
||
|
}
|