You are here

public function LayoutTest::testLayoutDefinitions in Layout Plugin (obsolete, use core's Layout Discovery) 8

Test listing the available layouts.

File

tests/src/Kernel/LayoutTest.php, line 38

Class

LayoutTest
Tests Layout functionality.

Namespace

Drupal\Tests\layout_plugin\Kernel

Code

public function testLayoutDefinitions() {
  $expected_layouts = [
    'layout_test_1col',
    'layout_test_2col',
    'layout_test_plugin',
  ];
  $this
    ->assertEquals($expected_layouts, array_keys($this->layoutManager
    ->getDefinitions()));
}