/**
  * Test method for {@link
  * org.hbird.parameterstorage.simple.query.QueryCallbackAdapter#onException(java.lang.Throwable)}.
  */
 @Test
 public void testOnException() {
   callback.onException(new Exception());
   callback.onException(null);
 }
 /**
  * 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);
 }
 /**
  * Test method for {@link org.hbird.parameterstorage.simple.query.QueryCallbackAdapter#onEnd()}.
  */
 @Test
 public void testOnEnd() {
   callback.onEnd();
 }
 /**
  * Test method for {@link org.hbird.parameterstorage.simple.query.QueryCallbackAdapter#onStart()}.
  */
 @Test
 public void testOnStart() {
   callback.onStart();
 }