Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/tests/phpunit/unit/includes/Settings/Source/Format/JsonFormatTest.php
Ðазад
<?php namespace MediaWiki\Tests\Unit\Settings\Source\Format; use MediaWiki\Settings\Source\Format\JsonFormat; use PHPUnit\Framework\TestCase; use UnexpectedValueException; /** * @covers \MediaWiki\Settings\Source\Format\JsonFormat */ class JsonFormatTest extends TestCase { public function testDecode() { $format = new JsonFormat(); $this->assertSame( [ 'config' => [ 'MySetting' => 'BlaBla' ] ], $format->decode( '{ "config": { "MySetting": "BlaBla" } }' ) ); } public function testDecodeBadJSON() { $format = new JsonFormat(); $this->expectException( UnexpectedValueException::class ); $format->decode( '{ bad }' ); } public static function provideSupportsFileExtension() { yield 'Supported' => [ 'json', true ]; yield 'Supported, uppercase' => [ 'JSON', true ]; yield 'Unsupported' => [ 'txt', false ]; } /** * @dataProvider provideSupportsFileExtension */ public function testSupportsFileExtension( $extension, $expected ) { $this->assertSame( $expected, JsonFormat::supportsFileExtension( $extension ) ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка