mediawiki-extensions-Math/tests/MathIdTest.php
Thiemo Mättig 129f0e4bcc Add more complete PHPDoc tags to all tests
... and remove some actual copy-paste mistakes.

Change-Id: Id2fd83edff774a7f07b0f5436cefe2bf5c0a63f0
2016-02-12 17:57:37 +01:00

24 lines
452 B
PHP

<?php
/**
* Test the Id feature
*
* @covers MathRenderer
*
* @group Math
*
* @licence GNU GPL v2+
*/
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() );
}
}