You are here

public function ParseExceptionTest::testGetMessage 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::testGetMessage()

File

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

Class

ParseExceptionTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testGetMessage() {
  $exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml');
  if (PHP_VERSION_ID >= 50400) {
    $message = 'Error message in "/var/www/app/config.yml" at line 42 (near "foo: bar")';
  }
  else {
    $message = 'Error message in "\\/var\\/www\\/app\\/config.yml" at line 42 (near "foo: bar")';
  }
  $this
    ->assertEquals($message, $exception
    ->getMessage());
}