/**
  * Test timeout time. Uses real clock that ignores acceleration (see {@link
  * #setClockAccelerationCoefficient(double)}). Instead of calling this method consider using
  * {@link FlowBlockJUnit4ClassRunner} or {@link FlowSpringJUnit4ClassRunner} and timeout parameter
  * of @Test annotation.
  *
  * @param timeout time in milliseconds.
  */
 public void setTestTimeoutActualTimeMilliseconds(long timeout) {
   this.testTimeoutActualTimeMilliseconds = timeout;
   if (workflowTestStatement != null) {
     workflowTestStatement.setTestTimeoutActualTimeMilliseconds(timeout);
   }
 }