You are here

public function ParseExceptionTest::testGetMessageWithUnicodeInFilename in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/symfony/yaml/Tests/ParseExceptionTest.php \Symfony\Component\Yaml\Tests\ParseExceptionTest::testGetMessageWithUnicodeInFilename()

File

vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php, line 30

Class

ParseExceptionTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testGetMessageWithUnicodeInFilename() {
  $exception = new ParseException('Error message', 42, 'foo: bar', 'äöü.yml');
  if (PHP_VERSION_ID >= 50400) {
    $message = 'Error message in "äöü.yml" at line 42 (near "foo: bar")';
  }
  else {
    $message = 'Error message in "\\u00e4\\u00f6\\u00fc.yml" at line 42 (near "foo: bar")';
  }
  $this
    ->assertEquals($message, $exception
    ->getMessage());
}