mediawiki-extensions-Math/tests/MathSourceTest.php
Moritz Schubortz c869831f45 Add and register PHP unit tests for MathSource class
This change adds test cases for the MathSource class and registers a
hook for loading these tests. Also adds documentation about how to run
these tests in README.

Change-Id: Ie58a273326e0353dfa4437b3de21a2393adb5a87
2013-02-17 20:23:50 +00:00

27 lines
714 B
PHP

<?php
/**
* Test the TeX source output format.
* @group Math
*/
class MathSourceTest extends MediaWikiTestCase {
/**
* Checks the basic functionallity
* i.e. if the span element is generated right.
*/
public function simpleTest(){
$real=MathRenderer::renderMath("a+b",array(),MW_MATH_SOURCE);
$this->assertEquals('<span class="tex" dir="ltr">$ a+b $</span>', $real
, "Rendering of a+b in plain Text mode");
}
/**
* Checks if newlines are converted to spaces correctly.
*/
public function testNewLines(){
$real=MathRenderer::renderMath("a\n b",array(),MW_MATH_SOURCE);
$this->assertSame('<span class="tex" dir="ltr">$ a b $</span>', $real
, "converting newlines to spaces");
}
}