class LayoutBuilderBreadcrumbAlterTest

Same name and namespace in other branches
  1. 11.x core/modules/layout_builder/tests/src/Kernel/LayoutBuilderBreadcrumbAlterTest.php \Drupal\Tests\layout_builder\Kernel\LayoutBuilderBreadcrumbAlterTest

Tests layout_builder_system_breadcrumb_alter().

@group layout_builder

Hierarchy

Expanded class hierarchy of LayoutBuilderBreadcrumbAlterTest

File

core/modules/layout_builder/tests/src/Kernel/LayoutBuilderBreadcrumbAlterTest.php, line 14

Namespace

Drupal\Tests\layout_builder\Kernel
View source
class LayoutBuilderBreadcrumbAlterTest extends EntityKernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'layout_builder',
    'layout_discovery',
  ];
  
  /**
   * Check that there are no errors when alter called with null route match.
   */
  public function testBreadcrumbAlterNullRouteMatch() {
    $breadcrumb = new Breadcrumb();
    $route_match = new NullRouteMatch();
    layout_builder_system_breadcrumb_alter($breadcrumb, $route_match, []);
  }

}

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