mediawiki-extensions-Math/tests/phpunit/unit/TexVC/Nodes/Fun1nbTest.php

51 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace MediaWiki\Extension\Math\Tests\TexVC\Nodes;
use ArgumentCountError;
use MediaWiki\Extension\Math\TexVC\Nodes\Fun1nb;
use MediaWiki\Extension\Math\TexVC\Nodes\Literal;
use MediaWikiUnitTestCase;
use TypeError;
/**
* @covers \MediaWiki\Extension\Math\TexVC\Nodes\Fun1nb
*/
class Fun1nbTest extends MediaWikiUnitTestCase {
public function testEmptyFun1nb() {
$this->expectException( ArgumentCountError::class );
new Fun1nb();
throw new ArgumentCountError( 'Should not create an empty fun1nb' );
}
public function testOneArgumentFun1nb() {
$this->expectException( ArgumentCountError::class );
new Fun1nb( '\\f' );
throw new ArgumentCountError( 'Should not create a fun1nb with one argument' );
}
public function testIncorrectTypeFun1nb() {
$this->expectException( TypeError::class );
new Fun1nb( '\\f', 'x' );
throw new TypeError( 'Should not create a fun1nb with incorrect type' );
}
public function testBasicFunctionFun1nb() {
$fun1nb = new Fun1nb( '\\f', new Literal( 'a' ) );
$this->assertEquals( '\\f {a} ', $fun1nb->render(), 'Should create a basic function' );
}
public function testGetters() {
$fun1nb = new Fun1nb( '\\f', new Literal( 'a' ) );
$this->assertNotEmpty( $fun1nb->getFname() );
$this->assertNotEmpty( $fun1nb->getArg() );
}
public function testCurliesFun1nb() {
$f = new Fun1nb( '\\f', new Literal( 'a' ) );
$this->assertEquals( '{\\f {a} }', $f->inCurlies(),
'Should create exactly one set of curlies' );
}
}