public function LayoutTest::testThemeProvidedLayout in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php \Drupal\Tests\layout_discovery\Kernel\LayoutTest::testThemeProvidedLayout()
- 9 core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php \Drupal\Tests\layout_discovery\Kernel\LayoutTest::testThemeProvidedLayout()
Tests that a layout provided by a theme has the preprocess function set.
File
- core/modules/ layout_discovery/ tests/ src/ Kernel/ LayoutTest.php, line 39 
Class
- LayoutTest
- Tests Layout functionality.
Namespace
Drupal\Tests\layout_discovery\KernelCode
public function testThemeProvidedLayout() {
  $this->container
    ->get('theme_installer')
    ->install([
    'test_layout_theme',
  ]);
  $this
    ->config('system.theme')
    ->set('default', 'test_layout_theme')
    ->save();
  $theme_definitions = $this->container
    ->get('theme.registry')
    ->get();
  $this
    ->assertContains('template_preprocess_layout', $theme_definitions['test_layout_theme']['preprocess functions']);
}