function ClientFactoryTest::providerTestCreateFromOptions
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest::providerTestCreateFromOptions()
- 10 core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest::providerTestCreateFromOptions()
- 11.x core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest::providerTestCreateFromOptions()
Data provider for testCreateFromOptions.
Return value
array
File
-
core/
tests/ Drupal/ Tests/ Core/ Http/ ClientFactoryTest.php, line 63
Class
- ClientFactoryTest
- @coversDefaultClass \Drupal\Core\Http\ClientFactory @group Http
Namespace
Drupal\Tests\Core\HttpCode
public function providerTestCreateFromOptions() {
return [
[
[],
[],
[
'verify' => TRUE,
'timeout' => 30,
],
],
[
[
'timeout' => 40,
],
[],
[
'verify' => TRUE,
'timeout' => 40,
],
],
[
[],
[
'timeout' => 50,
],
[
'verify' => TRUE,
'timeout' => 50,
],
],
[
[
'timeout' => 40,
],
[
'timeout' => 50,
],
[
'verify' => TRUE,
'timeout' => 50,
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.