public function ClientFactoryTest::providerTestCreateFromOptions in Drupal 9
Same name and namespace in other branches
- 8 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 60 
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,
      ],
    ],
  ];
}