public function test_getSetValueByKey_returnsCorrectValue()
 {
     $mockKey = "mockkey";
     $mockValue = "mockValue";
     $context = new Context();
     $context->setValueByKey($mockKey, $mockValue);
     $this->assertEquals($mockValue, $context->getValueByKey($mockKey));
 }