You are here

public function OptGroupTest::testFlattenOptions in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/OptGroupTest.php \Drupal\Tests\Core\Form\OptGroupTest::testFlattenOptions()
  2. 10 core/tests/Drupal/Tests/Core/Form/OptGroupTest.php \Drupal\Tests\Core\Form\OptGroupTest::testFlattenOptions()

Tests the flattenOptions() method.

@dataProvider providerTestFlattenOptions

File

core/tests/Drupal/Tests/Core/Form/OptGroupTest.php, line 19

Class

OptGroupTest
@coversDefaultClass \Drupal\Core\Form\OptGroup @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function testFlattenOptions($options) {
  $this
    ->assertSame([
    'foo' => 'foo',
  ], OptGroup::flattenOptions($options));
}