mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
73c41b4626
Initially we provide one service. More services will come in the future. Change-Id: I98a0f5f181f729e123a063dabf3597b5effa55b8
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 );
|
|
}
|
|
}
|