phalApiCacheNone = new PhalApi_Cache_None(); } protected function tearDown() { } /** * @group testSet */ public function testSet() { $key = 'aKey'; $value = 'aValue'; $expire = '100'; $rs = $this->phalApiCacheNone->set($key, $value, $expire); } /** * @group testGet */ public function testGet() { $key = 'aKey'; $rs = $this->phalApiCacheNone->get($key); $this->assertNull($rs); } /** * @group testDelete */ public function testDelete() { $key = 'aKey'; $rs = $this->phalApiCacheNone->delete($key); } }