private IEnumerable<Event> TestResourceReleaseAfterInterruptInterruptor(Environment env, Process proc)
 {
     proc.Interrupt();
       yield break;
 }
 private IEnumerable<Event> TestResourceContinueAfterInterruptWaitingInterruptor(Environment env, Process proc)
 {
     proc.Interrupt();
       yield break;
 }