public function BrowserTestBaseTest::testGetDefaultDriveInstance in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php \Drupal\FunctionalTests\BrowserTestBaseTest::testGetDefaultDriveInstance()
- 9 core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php \Drupal\FunctionalTests\BrowserTestBaseTest::testGetDefaultDriveInstance()
File
- core/
tests/ Drupal/ FunctionalTests/ BrowserTestBaseTest.php, line 601
Class
- BrowserTestBaseTest
- Tests BrowserTestBase functionality.
Namespace
Drupal\FunctionalTestsCode
public function testGetDefaultDriveInstance() {
putenv('MINK_DRIVER_ARGS=' . json_encode([
NULL,
[
'key1' => [
'key2' => [
'key3' => 3,
'key3.1' => 3.1,
],
],
],
]));
$this
->getDefaultDriverInstance();
$this
->assertEquals([
NULL,
[
'key1' => [
'key2' => [
'key3' => 3,
'key3.1' => 3.1,
],
],
],
], $this->minkDefaultDriverArgs);
}