You are here

public function ErrorTest::testGetLastCaller in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Utility/ErrorTest.php \Drupal\Tests\Core\Utility\ErrorTest::testGetLastCaller()
  2. 10 core/tests/Drupal/Tests/Core/Utility/ErrorTest.php \Drupal\Tests\Core\Utility\ErrorTest::testGetLastCaller()

Tests the getLastCaller() method.

@dataProvider providerTestGetLastCaller

Parameters

array $backtrace: The test backtrace array.

array $expected: The expected return array.

File

core/tests/Drupal/Tests/Core/Utility/ErrorTest.php, line 24

Class

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

Namespace

Drupal\Tests\Core\Utility

Code

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