private function saveMultipleValues()
 {
     $this->storage->setValue($this->setting, 'myRandomVal');
     $this->storage->setValue($this->createSetting('test2'), 5);
     $this->storage->setValue($this->createSetting('test3'), array(1, 2, '4'));
     $this->storage->save();
 }