public function testCache() { $this->cache ->set('foo', array( 1, 2, 3, )); $this ->assertEquals(array( 1, 2, 3, ), $this->cache ->get('foo'), '->get() returns the ->set() value'); }