OptGroupTest.php

Namespace

Drupal\Tests\Core\Form

File

core/tests/Drupal/Tests/Core/Form/OptGroupTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Form;

use Drupal\Core\Form\OptGroup;
use Drupal\Tests\UnitTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;

/**
 * Tests Drupal\Core\Form\OptGroup.
 */
class OptGroupTest extends UnitTestCase {
  
  /**
   * Tests the flattenOptions() method.
   */
  public function testFlattenOptions($options) : void {
    $this->assertSame([
      'foo' => 'foo',
    ], OptGroup::flattenOptions($options));
  }
  
  /**
   * Provides test data for the flattenOptions() method.
   *
   * @return array
   *   An array of option structures to be flattened.
   */
  public static function providerTestFlattenOptions() {
    $object1 = new \stdClass();
    $object1->option = [
      'foo' => 'foo',
    ];
    $object2 = new \stdClass();
    $object2->option = [
      [
        'foo' => 'foo',
      ],
      [
        'foo' => 'foo',
      ],
    ];
    $object3 = new \stdClass();
    return [
      [
        [
          'foo' => 'foo',
        ],
      ],
      [
        [
          [
            'foo' => 'foo',
          ],
        ],
      ],
      [
        [
          $object1,
        ],
      ],
      [
        [
          $object2,
        ],
      ],
      [
        [
          $object1,
          $object2,
        ],
      ],
      [
        [
          'foo' => $object3,
          $object1,
          [
            'foo' => 'foo',
          ],
        ],
      ],
    ];
  }

}

Classes

Title Deprecated Summary
OptGroupTest Tests Drupal\Core\Form\OptGroup.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.