function BrowserTestBaseTest::testGetDefaultDriveInstance
File
-
core/
tests/ Drupal/ FunctionalTests/ BrowserTestBaseTest.php, line 806
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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.