CacheSavingTest.php in MongoDB 7
Namespace
Drupal\mongodb_cache\TestsFile
mongodb_cache/src/Tests/CacheSavingTest.phpView source
<?php
namespace Drupal\mongodb_cache\Tests;
/**
* Cache saving test: Check our variables are saved and restored the right way.
*
* @package Drupal\mongodb_cache
*
* @group MongoDB: Cache
*/
class CacheSavingTest extends \CacheSavingCase {
use CacheTestTrait;
/**
* {@inheritdoc}
*/
public function setUp() {
drupal_flush_all_caches();
parent::setUp();
}
/**
* {@inheritdoc}
*/
public function tearDown() {
drupal_flush_all_caches();
parent::tearDown();
}
}
Classes
Name | Description |
---|---|
CacheSavingTest | Cache saving test: Check our variables are saved and restored the right way. |