cache = new ArrayCache('localhost'); return $this->cache; } protected function tearDown(): void { $this->cache->clear(false); parent::tearDown(); } /** * @doesNotPerformAssertions */ public function testTTL() { // Array Cache doesn't support TTL self::markTestSkipped("Array Cache doesn't support TTL"); return true; } /** * @small */ public function testGetStats() { self::assertEmpty($this->cache->getStats()); } }