📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 15:08:21
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpunit
/
phpunit
/
tests
/
unit
/
Util
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpunit/phpunit/tests/unit/Util
🔄 Refresh
✏️
Editing: JsonTest.php
Writable
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Util; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\Attributes\Small; use PHPUnit\Framework\Attributes\TestDox; use PHPUnit\Framework\TestCase; #[CoversClass(Json::class)] #[Small] final class JsonTest extends TestCase { public static function canonicalizeProvider(): array { return [ ['{"name":"John","age":"35"}', '{"age":"35","name":"John"}', false], ['{"name":"John","age":"35","kids":[{"name":"Petr","age":"5"}]}', '{"age":"35","kids":[{"age":"5","name":"Petr"}],"name":"John"}', false], ['"name":"John","age":"35"}', '{"age":"35","name":"John"}', true], ]; } public static function prettifyProvider(): array { return [ ['{"name":"John","age": "5"}', "{\n \"name\": \"John\",\n \"age\": \"5\"\n}"], ['{"url":"https://www.example.com/"}', "{\n \"url\": \"https://www.example.com/\"\n}"], ['"Кириллица and 中文"', '"Кириллица and 中文"'], ]; } public static function prettifyExceptionProvider(): array { return [ ['"name":"John","age": "5"}'], [''], ]; } #[DataProvider('canonicalizeProvider')] #[TestDox('Canonicalize $actual')] public function testCanonicalize(string $actual, string $expected, bool $expectError): void { [$error, $canonicalized] = Json::canonicalize($actual); $this->assertEquals($expectError, $error); if (!$expectError) { $this->assertEquals($expected, $canonicalized); } } #[DataProvider('prettifyProvider')] #[TestDox('Prettify $actual to $expected')] public function testPrettify(string $actual, string $expected): void { $this->assertEquals($expected, Json::prettify($actual)); } #[DataProvider('prettifyExceptionProvider')] public function testPrettifyException(string $json): void { $this->expectException(InvalidJsonException::class); Json::prettify($json); } }
💾 Save Changes
❌ Cancel