/**
  * Test method for {@link
  * org.hbird.parameterstorage.simple.query.QueryCallbackAdapter#onValue(org.hbird.parameterstorage.api.ParameterValueInTime)}
  * .
  */
 @Test
 public void testOnValue() {
   callback.onValue(
       new SimpleParameterValueInTime<Object>(new Object(), System.currentTimeMillis()));
   callback.onValue(null);
 }