Page MenuHomec4science

PhutilJSONTestCase.php
No OneTemporary

File Metadata

Created
Fri, Jan 31, 03:51

PhutilJSONTestCase.php

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

Event Timeline