You are here

ApcuRawBackendGeneralTests.php in Supercache 2.0.x

Same filename and directory in other branches
  1. 8 src/Tests/Cache/ApcuRawBackendGeneralTests.php

File

src/Tests/Cache/ApcuRawBackendGeneralTests.php
View source
<?php

namespace Drupal\supercache\Tests\Cache;

use Drupal\supercache\Tests\Generic\Cache\RawBackendGeneralTests as GeneralTests;
class ApcuRawBackendGeneralTests extends GeneralTests {
  use ApcuRawBackendGeneralTestCaseTrait;
  function testTouchAndCounterExpirations() {

    // APCu cannot be tested easily
    // like with the other backends.
    // @see http://stackoverflow.com/questions/11750223/apc-user-cache-entries-not-expiring
    $this
      ->pass("This test cannot run on APCu.");
  }

}

Classes