function ClientFactoryTest::providerTestCreateFromOptions

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest::providerTestCreateFromOptions()
  2. 8.9.x core/tests/Drupal/Tests/Core/Http/ClientFactoryTest.php \Drupal\Tests\Core\Http\ClientFactoryTest::providerTestCreateFromOptions()
  3. 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 67

Class

ClientFactoryTest
@coversDefaultClass \Drupal\Core\Http\ClientFactory[[api-linebreak]] @group Http

Namespace

Drupal\Tests\Core\Http

Code

public static 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.