mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-28 09:20:42 +00:00
17 lines
393 B
PHP
17 lines
393 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Test the Id feature
|
||
|
* @group Math
|
||
|
*/
|
||
|
class MathIdTest extends MediaWikiTestCase {
|
||
|
|
||
|
/**
|
||
|
* Checks if the id specified as attribute is set in the renderer object
|
||
|
*/
|
||
|
public function testBasics() {
|
||
|
define( 'RANDOM_ID', 'a_random_id' );
|
||
|
$renderer = MathRenderer::getRenderer( "a+b", array( 'id' => RANDOM_ID ) );
|
||
|
$this->assertEquals( RANDOM_ID, $renderer->getId() );
|
||
|
}
|
||
|
|
||
|
}
|