public function ParseExceptionTest::testGetMessageWithUnicodeInFilename in Plug 7
File
- lib/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());
}