FieldLayoutUninstallTest.php

Same filename and directory in other branches
  1. 9 core/modules/field_layout/tests/src/Kernel/FieldLayoutUninstallTest.php
  2. 8.9.x core/modules/field_layout/tests/src/Kernel/FieldLayoutUninstallTest.php
  3. 11.x core/modules/field_layout/tests/src/Kernel/FieldLayoutUninstallTest.php

Namespace

Drupal\Tests\field_layout\Kernel

File

core/modules/field_layout/tests/src/Kernel/FieldLayoutUninstallTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\field_layout\Kernel;

use Drupal\Tests\layout_builder\Kernel\LayoutBuilderCompatibilityTestBase;

/**
 * @group field_layout
 */
class FieldLayoutUninstallTest extends LayoutBuilderCompatibilityTestBase {
  
  /**
   * Ensures field layout can be uninstalled with layout builder enabled.
   */
  public function testFieldLayoutUninstall() : void {
    // Setup user schema so user hook uninstall hook doesn't break.
    $this->installSchema('user', 'users_data');
    // Setup layout builder and same displays.
    $this->installLayoutBuilder();
    // Ensure install hook can handle displays without a layout.
    $this->container
      ->get('module_installer')
      ->install([
      'field_layout',
    ]);
    // Ensure uninstall hook can handle displays without a layout.
    $this->container
      ->get('module_installer')
      ->uninstall([
      'field_layout',
    ]);
  }

}

Classes

Title Deprecated Summary
FieldLayoutUninstallTest @group field_layout

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