/** * @covers Gems_Tracker_Token::cacheReset */ public function testCacheReset() { $this->token->cacheSet('foo3', 'baz'); $this->token->cacheReset(); $this->assertEquals(null, $this->token->cacheGet('foo3')); }