use of org.webpieces.http2client.api.dto.FullResponse in project webpieces by deanhiller.
the class TestBasicHttp2Client method testBasicSendRespond.
@Test
public void testBasicSendRespond() {
FullRequest request1 = Requests.createHttp2Request();
MockResponseListener respListener1 = new MockResponseListener();
respListener1.setIncomingRespDefault(CompletableFuture.completedFuture(null));
CompletableFuture<FullResponse> future = httpSocket.send(request1);
Assert.assertFalse(future.isDone());
}
Aggregations