mediawiki-extensions-Math/tests/phpunit/unit/TexVC/Nodes/BigTest.php
Stegmujo ba47c32e1d
Add Node and Util fixes for Parser.php
For development history of this changeset see:
Id96a4b1b55e3959aab81f4ba436c5ac125f2a1bb

Bug: T312528

Change-Id: I61cfdbd63f8d50b072ada05927a134686fdd53d3
2022-10-19 16:33:15 +02:00

56 lines
1.6 KiB
PHP

<?php
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
use ArgumentCountError;
use MediaWiki\Extension\Math\TexVC\Nodes\Big;
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
use MediaWikiUnitTestCase;
use RuntimeException;
use TypeError;
/**
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\Big
*/
class BigTest extends MediaWikiUnitTestCase {
public function testEmptyBig() {
$this->expectException( ArgumentCountError::class );
new Big();
throw new ArgumentCountError( 'Should not create an empty big' );
}
public function testOneArgumentBig() {
$this->expectException( ArgumentCountError::class );
new Big( '\\big' );
throw new ArgumentCountError( 'Should not create a big with one argument' );
}
public function testIncorrectTypeBig() {
$this->expectException( TypeError::class );
new Big( '\\big', new Literal( 'a' ) );
throw new RuntimeException( 'Should not create a big with incorrect type' );
}
public function testBasicFunctionBig() {
$big = new Big( '\\big', 'a' );
$this->assertEquals( '{\\big a}', $big->render(), 'Should create a basic function' );
}
public function testGetters() {
$big = new Big( '\\big', 'a' );
$this->assertNotEmpty( $big->getArg() );
$this->assertNotEmpty( $big->getFname() );
}
public function testExtractIdentifiersBig() {
$big = new Big( '\\big', 'a' );
$this->assertEquals( [], $big->extractIdentifiers(), 'Should extract identifiers' );
}
public function testCurliesBig() {
$big = new Big( '\\big', 'a' );
$this->assertEquals( '{\\big a}', $big->inCurlies(), 'Should create exactly one set of curlies' );
}
}