Skip to content
Snippets Groups Projects
Commit de7cab4c authored by Christian Wulf's avatar Christian Wulf
Browse files

added SpScPipeTest skeleton

parent 9b5d9462
No related branches found
No related tags found
No related merge requests found
package teetime.framework.pipe;
import org.junit.Test;
import teetime.framework.InputPort;
import teetime.framework.OutputPort;
public class SpScPipeTest {
@Test
public void testSignalOrdering() throws Exception {
OutputPort<? extends Object> sourcePort = null;
InputPort<Object> targetPort = null;
IPipe pipe = new SpScPipe(sourcePort, targetPort, 1);
// TODO implement test
// pipe.sendSignal(signal);
// pipe.getSignal();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment