Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Math/tests/phpunit/unit/WikiTexVC/Nodes/Fun1nbTest.php
Ðазад
<?php namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes; use ArgumentCountError; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Fun1nb; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Literal; use MediaWikiUnitTestCase; use TypeError; /** * @covers \MediaWiki\Extension\Math\WikiTexVC\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' ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка