function JsonTest::testEncodingLength
Tests encoding length.
File
-
core/
tests/ Drupal/ Tests/ Component/ Serialization/ JsonTest.php, line 74
Class
Namespace
Drupal\Tests\Component\SerializationCode
public function testEncodingLength() : void {
// Verify that JSON encoding produces a string with all of the characters.
$json = Json::encode($this->string);
// Verify that a JSON-encoded string is larger than the source string.
$this->assertGreaterThan(strlen($this->string), strlen($json));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.