コード例 #1
0
 /**
  * Make the SamplePackage the running version, or make it no longer the
  * running version. This tells to each element of the SamplePackage that it's current state must
  * be retrievable by a call to recoverRunningVersion().
  * @param running boolean
  * @see TestElement#setRunningVersion(boolean)
  */
 public void SetRunningVersion(Boolean running)
 {
     SetRunningVersion <ConfigTestElement>(configs, running);
     SetRunningVersion <ExecutionListener>(sampleListeners, running);
     SetRunningVersion <Assertion>(assertions, running);
     SetRunningVersion <PostProcessor>(postProcessors, running);
     SetRunningVersion <Controller>(controllers, running);
     sampler.SetRunningVersion(running);
 }