public function ParseExceptionTest::testGetMessageWithUnicodeInFilename in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php \Symfony\Component\Yaml\Tests\ParseExceptionTest::testGetMessageWithUnicodeInFilename()
File
- vendor/
symfony/ yaml/ Tests/ ParseExceptionTest.php, line 31
Class
Namespace
Symfony\Component\Yaml\TestsCode
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());
}