Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / memcache / src / Tests / MemcacheLockFunctionalTest.php
1 <?php
2
3 namespace Drupal\memcache\Tests;
4
5 use Drupal\Tests\system\Functional\Lock\LockFunctionalTest;
6
7 /**
8  * Confirm locking works between two separate requests.
9  *
10  * @group memcache
11  */
12 class MemcacheLockFunctionalTest extends LockFunctionalTest {
13
14   /**
15    * Modules to enable.
16    *
17    * @var array
18    */
19   public static $modules = ['system_test', 'memcache', 'memcache_test'];
20
21 }