Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Math/tests/phpunit/unit/WikiTexVC/Nodes/LrTest.php
Ðазад
<?php namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes; use ArgumentCountError; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Literal; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Lr; use MediaWiki\Extension\Math\WikiTexVC\Nodes\TexArray; use MediaWikiUnitTestCase; use TypeError; /** * @covers \MediaWiki\Extension\Math\WikiTexVC\Nodes\Lr */ class LrTest extends MediaWikiUnitTestCase { public function testEmptyLr() { $this->expectException( ArgumentCountError::class ); new Lr(); throw new ArgumentCountError( 'Should not create an empty lr' ); } public function testOneArgumentLr() { $this->expectException( ArgumentCountError::class ); new Lr( '(' ); throw new ArgumentCountError( 'Should not create a lr with one argument' ); } public function testIncorrectTypeLr() { $this->expectException( TypeError::class ); new Lr( '(', ')', new Literal( 'a' ) ); throw new TypeError( 'Should not create a lr with incorrect type' ); } public function testBasicLr() { $f = new Lr( '(', ')', new TexArray( new Literal( 'a' ) ) ); $this->assertEquals( '\\left(a\\right)', $f->render(), 'Should create a basic function' ); } public function testGetters() { $f = new Lr( '(', ')', new TexArray( new Literal( 'a' ) ) ); $this->assertNotEmpty( $f->getLeft() ); $this->assertNotEmpty( $f->getRight() ); $this->assertNotEmpty( $f->getArg() ); } public function testCurliesLr() { $f = new Lr( '(', ')', new TexArray( new Literal( 'a' ), new Literal( 'b' ) ) ); $this->assertEquals( '{\\left(ab\\right)}', $f->inCurlies(), 'Should create exactly one set of curlies' ); } public function testExtractIdentifiersLr() { $n = new Lr( '(', ')', new TexArray( new Literal( 'a' ), new Literal( 'b' ) ) ); $this->assertEquals( [ 'a', 'b' ], $n->extractIdentifiers(), 'Should extract identifiers' ); } public function testRenderA() { $n = new Lr( '(', ')', new TexArray( new Literal( 'A' ) ) ); $mml = $n->renderMML(); $this->assertStringContainsString( 'A</mi>', $mml ); $this->assertStringContainsString( ')</mo>', $mml ); } public function testRenderADeriv() { $n = new Lr( '(', ')', new TexArray( new Literal( 'A' ) ) ); $state = [ 'deriv' => 1 ]; $mml = $n->renderMML( [], $state ); $this->assertStringNotContainsString( '′</mo>', $mml ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка