function DisplayVariantTest::providerTestGetConfiguration
Provides test data for testGetConfiguration().
File
- 
              core/tests/ Drupal/ Tests/ Core/ Display/ DisplayVariantTest.php, line 88 
Class
- DisplayVariantTest
- @coversDefaultClass \Drupal\Core\Display\VariantBase[[api-linebreak]] @group Display
Namespace
Drupal\Tests\Core\DisplayCode
public function providerTestGetConfiguration() {
  $data = [];
  $data[] = [
    [],
    [
      'id' => 'test',
      'label' => '',
      'uuid' => '',
      'weight' => 0,
    ],
  ];
  $data[] = [
    [
      'label' => 'Test',
    ],
    [
      'id' => 'test',
      'label' => 'Test',
      'uuid' => '',
      'weight' => 0,
    ],
  ];
  $data[] = [
    [
      'id' => 'foo',
    ],
    [
      'id' => 'test',
      'label' => '',
      'uuid' => '',
      'weight' => 0,
    ],
  ];
  return $data;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
