function SectionStorageManagerTest::testFindDefinitions

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/SectionStorageManagerTest.php \Drupal\Tests\layout_builder\Unit\SectionStorageManagerTest::testFindDefinitions()
  2. 10 core/modules/layout_builder/tests/src/Unit/SectionStorageManagerTest.php \Drupal\Tests\layout_builder\Unit\SectionStorageManagerTest::testFindDefinitions()
  3. 11.x core/modules/layout_builder/tests/src/Unit/SectionStorageManagerTest.php \Drupal\Tests\layout_builder\Unit\SectionStorageManagerTest::testFindDefinitions()

@covers ::findDefinitions

File

core/modules/layout_builder/tests/src/Unit/SectionStorageManagerTest.php, line 185

Class

SectionStorageManagerTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21layout_builder%21src%21SectionStorage%21SectionStorageManager.php/class/SectionStorageManager/8.9.x" title="Provides the Section Storage type plugin manager." class="local">\Drupal\layout_builder\SectionStorage\SectionStorageManager</a>

Namespace

Drupal\Tests\layout_builder\Unit

Code

public function testFindDefinitions() {
    $this->discovery
        ->getDefinitions()
        ->willReturn([
        'plugin1' => new SectionStorageDefinition(),
        'plugin2' => new SectionStorageDefinition([
            'weight' => -5,
        ]),
        'plugin3' => new SectionStorageDefinition([
            'weight' => -5,
        ]),
        'plugin4' => new SectionStorageDefinition([
            'weight' => 10,
        ]),
    ]);
    $expected = [
        'plugin2',
        'plugin3',
        'plugin1',
        'plugin4',
    ];
    $result = $this->manager
        ->getDefinitions();
    $this->assertSame($expected, array_keys($result));
}

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