| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @author Khoa Bui (khoaofgod) <khoaofgod@gmail.com> http://www.phpfastcache.com
- * @author Georges.L (Geolim4) <contact@geolim4.com>
- */
- use phpFastCache\CacheManager;
- use phpFastCache\Helper\TestHelper;
- use Psr\Cache\CacheItemPoolInterface;
- chdir(__DIR__);
- require_once __DIR__ . '/../vendor/autoload.php';
- $testHelper = new TestHelper('PSR6 Interface Implements');
- $defaultDriver = (!empty($argv[1]) ? ucfirst($argv[1]) : 'Files');
- /**
- * Testing memcached as it is declared in .travis.yml
- */
- $driverInstance = CacheManager::getInstance($defaultDriver);
- if (!is_object($driverInstance)) {
- $testHelper->printFailText('CacheManager::getInstance() returned an invalid variable type:' . gettype($driverInstance));
- }else if(!($driverInstance instanceof CacheItemPoolInterface)){
- $testHelper->printFailText('CacheManager::getInstance() returned an invalid class:' . get_class($driverInstance));
- }else{
- $testHelper->printPassText('CacheManager::getInstance() returned a valid CacheItemPoolInterface object: ' . get_class($driverInstance));
- }
- $testHelper->terminateTest();
|