You are here

public function ErrorTest::testFormatBacktrace in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Utility/ErrorTest.php \Drupal\Tests\Core\Utility\ErrorTest::testFormatBacktrace()

Tests the formatBacktrace() method.

@dataProvider providerTestFormatBacktrace

Parameters

array $backtrace: The test backtrace array.

array $expected: The expected return array.

File

core/tests/Drupal/Tests/Core/Utility/ErrorTest.php, line 79
Contains \Drupal\Tests\Core\Utility\ErrorTest.

Class

ErrorTest
@coversDefaultClass \Drupal\Core\Utility\Error @group Utility

Namespace

Drupal\Tests\Core\Utility

Code

public function testFormatBacktrace($backtrace, $expected) {
  $this
    ->assertSame($expected, Error::formatBacktrace($backtrace));
}