You are here

public function DefaultLazyPluginCollectionTest::providerTestSortHelper in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::providerTestSortHelper()

Provides test data for testSortHelper.

Return value

array The test data.

File

core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php, line 65

Class

DefaultLazyPluginCollectionTest
@coversDefaultClass \Drupal\Core\Plugin\DefaultLazyPluginCollection @group Plugin

Namespace

Drupal\Tests\Core\Plugin

Code

public function providerTestSortHelper() {
  return [
    [
      'apple',
      'apple',
      0,
    ],
    [
      'apple',
      'cherry',
      -1,
    ],
    [
      'cherry',
      'apple',
      1,
    ],
    [
      'cherry',
      'banana',
      1,
    ],
  ];
}