ConcurrentModificationException in SM Runner fixed
[fedora-idea.git] / smRunner / src / com / intellij / execution / testframework / sm / runner / ProcessOutputConsumer.java
blob0e18e45845ff2105b0fc5098ebc307d2282c03de
1 package com.intellij.execution.testframework.sm.runner;
3 import com.intellij.openapi.Disposable;
4 import com.intellij.openapi.util.Key;
6 /**
7 * @author Roman Chernyatchik
8 */
9 public interface ProcessOutputConsumer extends Disposable {
10 void setProcessor(GeneralTestEventsProcessor processor);
11 void process(String text, Key outputType);