* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Cache; use Config\Cache; use PHPUnit\Framework\Attributes\Group; /** * @internal */ #[Group('Others')] final class FactoriesCacheFileHandlerTest extends AbstractFactoriesCacheHandlerTestCase { protected function createFactoriesCache(): void { $this->handler = CacheFactory::getHandler(new Cache(), 'file'); $this->cache = new FactoriesCache($this->handler); } }