fitnesse.testsystems.fit.SocketAccepter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fitnesse.testsystems.fit;
import java.io.IOException;
import java.net.Socket;
public interface SocketAccepter {
void acceptSocket(Socket socket) throws IOException, InterruptedException;
}