public function FlattenExceptionTest::testLine

@dataProvider flattenDataProvider

File

drupal/core/vendor/symfony/debug/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php, line 138

Class

FlattenExceptionTest

Namespace

Symfony\Component\Debug\Tests\Exception

Code

public function testLine(\Exception $exception) {
  $flattened = FlattenException::create($exception);
  $this
    ->assertSame($exception
    ->getLine(), $flattened
    ->getLine());
}