1
0
Fork 0

Update json test

pull/3069/head
Jordi Boggiano 2014-06-22 11:00:31 +02:00
parent dcea95feba
commit 3874a11238
1 changed files with 13 additions and 1 deletions

View File

@ -131,7 +131,17 @@ class JsonFileTest extends \PHPUnit_Framework_TestCase
public function testFormatEmptyArray()
{
$data = array('test' => array(), 'test2' => new \stdClass);
$json = '{
if (
(PHP_VERSION_ID < 50500 && PHP_VERSION_ID >= 50429)
|| (PHP_VERSION_ID < 50600 && PHP_VERSION_ID >= 50513)
|| (PHP_VERSION_ID >= 50600)
) {
$json = '{
"test": [],
"test2": {}
}';
} else {
$json = '{
"test": [
],
@ -139,6 +149,8 @@ class JsonFileTest extends \PHPUnit_Framework_TestCase
}
}';
}
$this->assertJsonFormat($json, $data);
}