Page MenuHomec4science

PhutilJSONTestCase.php
No OneTemporary

File Metadata

Created
Fri, Nov 22, 07:21

PhutilJSONTestCase.php

<?php
/**
* @group testcase
*/
final class PhutilJSONTestCase extends PhutilTestCase {
public function testEmptyArrayEncoding() {
$serializer = new PhutilJSON();
$expect = <<<EOJSON
{
"x" : []
}
EOJSON;
$this->assertEqual(
$expect,
$serializer->encodeFormatted(array('x' => array())),
'Empty arrays should serialize as [], not {}.');
}
}

Event Timeline