/**
  * @throws Exception
  */
 public function testSetKeyNormalizerException()
 {
     $this->storage->setItems(['testItem1' => 'testValue1', 'testItem2' => 'testValue2']);
     $this->setExpectedException(Exception::class);
     $this->storage->setKeyNormalizer(ArrayDataStorage::KEY_CASE_NO_CHANGE);
 }