Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Math/tests/phpunit/unit/WikiTexVC/Nodes/BoxTest.php
Ðазад
<?php namespace MediaWiki\Extension\Math\Tests\WikiTexVC\Nodes; use ArgumentCountError; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Box; use MediaWiki\Extension\Math\WikiTexVC\Nodes\Literal; use MediaWikiUnitTestCase; use RuntimeException; use TypeError; /** * @covers \MediaWiki\Extension\Math\WikiTexVC\Nodes\Box */ class BoxTest extends MediaWikiUnitTestCase { public function testEmptyBox() { $this->expectException( ArgumentCountError::class ); new Box(); throw new ArgumentCountError( 'Should not create an empty box' ); } public function testOneArgumentBox() { $this->expectException( ArgumentCountError::class ); new Box( '\\hbox' ); throw new ArgumentCountError( 'Should not create a box with one argument' ); } public function testIncorrectTypeBox() { $this->expectException( TypeError::class ); new Box( '\\hbox', new Literal( 'a' ) ); throw new RuntimeException( 'Should not create a box with incorrect type' ); } public function testBasicFunctionBox() { $box = new Box( '\\hbox', 'a' ); $this->assertEquals( '{\\hbox{a}}', $box->render(), 'Should create a basic function' ); } public function testGetters() { $box = new Box( '\\hbox', 'a' ); $this->assertNotEmpty( $box->getArg() ); $this->assertNotEmpty( $box->getFname() ); } public function testExtractIdentifiersBox() { $box = new Box( '\\hbox', 'a' ); $this->assertEquals( [], $box->extractIdentifiers(), 'Should extract identifiers' ); } public function testCurliesBox() { $box = new Box( '\\hbox', 'a' ); $this->assertEquals( '{\\hbox{a}}', $box->inCurlies(), 'Should create exactly one set of curlies' ); } public function testRenderMML() { $box = new Box( '\\hbox', 'a' ); $this->assertStringContainsString( '</mtext>', $box->renderMML(), 'Render MathML as text.' ); } public function testTrailingSpaceBoxMML() { $box = new Box( '\\hbox', 'a ' ); $this->assertStringContainsString( ' ', $box->renderMML(), 'Should have trailing rendered space' ); } public function testPrecedingSpaceBoxMML() { $box = new Box( '\\hbox', ' a' ); $this->assertStringContainsString( ' ', $box->renderMML(), 'Should have preceding rendered space' ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка