public function GetTestMethodCallerTest::testGetTestMethodCaller in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/GetTestMethodCallerTest.php \Drupal\FunctionalTests\GetTestMethodCallerTest::testGetTestMethodCaller()
Tests BrowserTestBase::getTestMethodCaller().
File
- core/
tests/ Drupal/ FunctionalTests/ GetTestMethodCallerTest.php, line 22
Class
- GetTestMethodCallerTest
- Explicit test for BrowserTestBase::getTestMethodCaller().
Namespace
Drupal\FunctionalTestsCode
public function testGetTestMethodCaller() {
$method_caller = $this
->getTestMethodCaller();
$expected = [
'file' => __FILE__,
'line' => 23,
'function' => __CLASS__ . '->' . __FUNCTION__ . '()',
'class' => BrowserTestBase::class,
'object' => $this,
'type' => '->',
'args' => [],
];
$this
->assertEquals($expected, $method_caller);
}