public function test_setValue_getValue_shouldSetAndGetActualValue()
 {
     $this->storage->setValue($this->setting, 'myRandomVal');
     $value = $this->storage->getValue($this->setting);
     $this->assertEquals('myRandomVal', $value);
 }