use of org.eclipse.jetty.websocket.common.test.BlockheadServer in project jetty.project by eclipse.
the class EncoderTest method startServer.
@Before
public void startServer() throws Exception {
server = new BlockheadServer();
server.start();
}
use of org.eclipse.jetty.websocket.common.test.BlockheadServer in project jetty.project by eclipse.
the class WebSocketClientTest method startClientServer.
@Before
public void startClientServer() throws Exception {
client = new WebSocketClient();
client.start();
server = new BlockheadServer();
server.start();
}
use of org.eclipse.jetty.websocket.common.test.BlockheadServer in project jetty.project by eclipse.
the class DecoderReaderManySmallTest method startServer.
@Before
public void startServer() throws Exception {
server = new BlockheadServer();
server.start();
}
use of org.eclipse.jetty.websocket.common.test.BlockheadServer in project jetty.project by eclipse.
the class DecoderReaderTest method startServer.
@Before
public void startServer() throws Exception {
server = new BlockheadServer();
server.start();
}
use of org.eclipse.jetty.websocket.common.test.BlockheadServer in project jetty.project by eclipse.
the class BadNetworkTest method startServer.
@Before
public void startServer() throws Exception {
server = new BlockheadServer();
server.start();
}
Aggregations