mediawiki-extensions-Math/tests/phpunit/unit/WikiTexVC/RenderTest.php
thiemowmde cd4ce78d31 Make use of actual @dataProviders in tests
Instead of manually crafted $this->testCase properties.

Also make use of the dedicated PHPUnit feature to mark as test as
passed. While assertTrue( true ) is a very common hack it can be
confusing.

Change-Id: Ic071bf561929c2a79537111bee18631865f91366
2024-08-31 11:49:04 +00:00

56 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\WikiTexVC;
use MediaWiki\Extension\Math\WikiTexVC\Parser;
use MediaWikiUnitTestCase;
/**
* @covers \MediaWiki\Extension\Math\WikiTexVC\Parser
*/
class RenderTest extends MediaWikiUnitTestCase {
public function provideTestCases() {
return [
[
'in' => '',
],
[
'in' => 'a',
],
[
'in' => 'a^2',
'out' => 'a^{2}'
],
[
'in' => 'a^2+b^{2}',
'out' => 'a^{2}+b^{2}'
],
[
'in' => 'a^{2}+b^{2}',
],
[
'in' => 'l_a^2+l_b^2=l_c^2',
'out' => 'l_{a}^{2}+l_{b}^{2}=l_{c}^{2}'
],
[
'in' => '\\sin(x)+{}{}\\cos(x)^2 newcommand',
'out' => '\\sin(x)+{}{}\\cos(x)^{2}newcommand'
]
];
}
/**
* @dataProvider provideTestCases
*/
public function testRendering( string $in, string $out = null ) {
$parser = new Parser();
$out ??= $in;
$result = $parser->parse( $in );
$rendered = $result->render();
$this->assertSame( $out, $rendered, 'Error rendering input: '
. $in . ' rendered output is: ' . $rendered . ' should be: ' . $out );
}
}