function JsonTest::testEncodingAscii
Tests encoding for every ASCII character.
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Serialization/ JsonTest.php, line 58  
Class
- JsonTest
 - @coversDefaultClass \Drupal\Component\Serialization\Json[[api-linebreak]] @group Serialization
 
Namespace
Drupal\Tests\Component\SerializationCode
public function testEncodingAscii() {
  // Verify there aren't character encoding problems with the source string.
  $this->assertSame(127, strlen($this->string), 'A string with the full ASCII table has the correct length.');
  foreach ($this->htmlUnsafe as $char) {
    $this->assertStringContainsString($char, $this->string, sprintf('A string with the full ASCII table includes %s.', $char));
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.