mediawiki-extensions-Math/tests/phpunit/integration/MathIntegrationTest.php
Moritz Schubotz (physikerwelt) 73c41b4626
Provide static Factory Class for Math related services
Initially we provide one service. More services will come in
the future.

Change-Id: I98a0f5f181f729e123a063dabf3597b5effa55b8
2022-07-22 18:59:11 +02:00

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 );
}
}