ArrayCacheTest.php

Namespace

Doctrine\Tests\Common\Cache

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php
View source
<?php

namespace Doctrine\Tests\Common\Cache;

use Doctrine\Common\Cache\ArrayCache;
class ArrayCacheTest extends CacheTest {
  protected function _getCacheDriver() {
    return new ArrayCache();
  }
  public function testGetStats() {
    $cache = $this
      ->_getCacheDriver();
    $stats = $cache
      ->getStats();
    $this
      ->assertNull($stats);
  }

}

Classes

Namesort descending Description
ArrayCacheTest