function GetTestMethodCallerTest::testGetTestMethodCaller

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/GetTestMethodCallerTest.php \Drupal\FunctionalTests\GetTestMethodCallerTest::testGetTestMethodCaller()
  2. 8.9.x core/tests/Drupal/FunctionalTests/GetTestMethodCallerTest.php \Drupal\FunctionalTests\GetTestMethodCallerTest::testGetTestMethodCaller()
  3. 10 core/tests/Drupal/FunctionalTests/GetTestMethodCallerTest.php \Drupal\FunctionalTests\GetTestMethodCallerTest::testGetTestMethodCaller()

Tests BrowserTestBase::getTestMethodCaller().

File

core/tests/Drupal/FunctionalTests/GetTestMethodCallerTest.php, line 24

Class

GetTestMethodCallerTest
Explicit test for BrowserTestBase::getTestMethodCaller().

Namespace

Drupal\FunctionalTests

Code

public function testGetTestMethodCaller() : void {
    $method_caller = $this->getTestMethodCaller();
    $expected = [
        'file' => __FILE__,
        'line' => 25,
        'function' => __CLASS__ . '->' . __FUNCTION__ . '()',
        'class' => BrowserTestBase::class,
        'object' => $this,
        'type' => '->',
        'args' => [],
    ];
    $this->assertEquals($expected, $method_caller);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.