You are here

ContentLockTestBase.php in Content locking (anti-concurrent editing) 8.2

Same filename and directory in other branches
  1. 8 tests/src/Functional/ContentLockTestBase.php

File

tests/src/Functional/ContentLockTestBase.php
View source
<?php

namespace Drupal\Tests\content_lock\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Base class for content_lock tests.
 */
abstract class ContentLockTestBase extends BrowserTestBase {
  use ContentLockTestTrait;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'entity_test',
    'content_lock',
  ];

}

Classes

Namesort descending Description
ContentLockTestBase Base class for content_lock tests.