You are here

public function BlockManagerTest::testSortedDefinitions in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Block/BlockManagerTest.php \Drupal\Tests\Core\Block\BlockManagerTest::testSortedDefinitions()
  2. 9 core/tests/Drupal/Tests/Core/Block/BlockManagerTest.php \Drupal\Tests\Core\Block\BlockManagerTest::testSortedDefinitions()

@covers ::getSortedDefinitions

File

core/tests/Drupal/Tests/Core/Block/BlockManagerTest.php, line 93

Class

BlockManagerTest
@coversDefaultClass \Drupal\Core\Block\BlockManager

Namespace

Drupal\Tests\Core\Block

Code

public function testSortedDefinitions() {
  $definitions = $this->blockManager
    ->getSortedDefinitions();
  $this
    ->assertSame([
    'block2',
    'block3',
    'block1',
  ], array_keys($definitions));
}