mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-13 00:18:25 +00:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
|
||
|
|
||
|
use ArgumentCountError;
|
||
|
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
|
||
|
use MediaWiki\Extension\Math\TexVC\Nodes\TexNode;
|
||
|
use MediaWiki\Extension\Math\TexVC\Nodes\UQ;
|
||
|
use MediaWikiUnitTestCase;
|
||
|
use RuntimeException;
|
||
|
use TypeError;
|
||
|
|
||
|
/**
|
||
|
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\UQ
|
||
|
*/
|
||
|
class UQTest extends MediaWikiUnitTestCase {
|
||
|
|
||
|
public function testEmptyUQ() {
|
||
|
$this->expectException( ArgumentCountError::class );
|
||
|
new UQ();
|
||
|
throw new ArgumentCountError( 'Should not create an empty uq' );
|
||
|
}
|
||
|
|
||
|
public function testOneArgumentUQ() {
|
||
|
$this->expectException( ArgumentCountError::class );
|
||
|
new UQ( new Literal( 'a' ) );
|
||
|
throw new ArgumentCountError( 'Should not create a uq with one argument' );
|
||
|
}
|
||
|
|
||
|
public function testIncorrectTypeUQ() {
|
||
|
$this->expectException( TypeError::class );
|
||
|
new UQ( 'a', 'b' );
|
||
|
throw new RuntimeException( 'Should not create a uq with incorrect type' );
|
||
|
}
|
||
|
|
||
|
public function testBasicUQ() {
|
||
|
$uq = new UQ( new Literal( 'a' ), new Literal( 'b' ) );
|
||
|
$this->assertEquals( 'a^{b}', $uq->render(), 'Should create a basic uq' );
|
||
|
}
|
||
|
|
||
|
public function testEmptyBaseUQ() {
|
||
|
$uq = new UQ( new TexNode(), new Literal( 'b' ) );
|
||
|
$this->assertEquals( '^{b}', $uq->render(), 'Should create an empty base uq' );
|
||
|
}
|
||
|
}
|