@RunWith(Http2TestRunner.class)
public class ALPNConnectionEstablishmentTestCase {
@Test
public void testConnectionEstablished() throws IOException {
Http2Client connection = TestEnvironment.connectViaAlpn();
HttpResponse response = connection.sendRequest(new ClientRequest());
Assert.assertEquals(StatusCodes.OK, response.getStatus());
}