mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-12 07:55:11 +00:00
ba47c32e1d
For development history of this changeset see: Id96a4b1b55e3959aab81f4ba436c5ac125f2a1bb Bug: T312528 Change-Id: I61cfdbd63f8d50b072ada05927a134686fdd53d3
60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
|
|
|
|
use ArgumentCountError;
|
|
use MediaWiki\Extension\Math\TexVC\Nodes\Fun2;
|
|
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
|
|
use MediaWikiUnitTestCase;
|
|
use RuntimeException;
|
|
use TypeError;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\Fun2
|
|
*/
|
|
class Fun2Test extends MediaWikiUnitTestCase {
|
|
|
|
public function testEmptyFun2() {
|
|
$this->expectException( ArgumentCountError::class );
|
|
new Fun2();
|
|
throw new ArgumentCountError( 'Should not create an empty fun2' );
|
|
}
|
|
|
|
public function testOneArgumentFun2() {
|
|
$this->expectException( ArgumentCountError::class );
|
|
new Fun2( '\\f' );
|
|
throw new ArgumentCountError( 'Should not create a fun2 with one argument' );
|
|
}
|
|
|
|
public function testIncorrectTypeFun2() {
|
|
$this->expectException( TypeError::class );
|
|
new Fun2( '\\f', 'x', 'y' );
|
|
throw new RuntimeException( 'Should not create a fun2 with incorrect types' );
|
|
}
|
|
|
|
public function testBasicFunctionFun2() {
|
|
$f = new Fun2( '\\f', new Literal( 'a' ), new Literal( 'b' ) );
|
|
$this->assertEquals( '{\\f {a}{b}}', $f->render(),
|
|
'Should create a basic function' );
|
|
}
|
|
|
|
public function testGetters() {
|
|
$f = new Fun2( '\\f', new Literal( 'a' ), new Literal( 'b' ) );
|
|
$this->assertNotEmpty( $f->getFname() );
|
|
$this->assertNotEmpty( $f->getArg1() );
|
|
$this->assertNotEmpty( $f->getArg2() );
|
|
}
|
|
|
|
public function testCurliesFun2() {
|
|
$f = new Fun2( '\\f', new Literal( 'a' ), new Literal( 'b' ) );
|
|
$this->assertEquals( '{\\f {a}{b}}', $f->inCurlies(),
|
|
'Should create exactly one set of curlies' );
|
|
}
|
|
|
|
public function testExtractIdentifiersFun2() {
|
|
$f = new Fun2( '\\f', new Literal( 'a' ), new Literal( 'b' ) );
|
|
$this->assertEquals( [ 'a','b' ], $f->extractIdentifiers(),
|
|
'Should extract identifiers' );
|
|
}
|
|
}
|