getStorageValue(); $this->assertEquals('[]', $pre); $h['foo'] = 'bar'; $post = $h->getStorageValue(); $this->assertEquals(1, preg_match('/\{["\']foo["\']:["\']bar["\']\}/', $post)); unset($h['foo']); $unset = $h->getStorageValue(); $this->assertEquals('[]', $unset); } }