Skip to content

Commit 2e0aa7e

Browse files
committed
Tests disabled until AsyncHttpClient#229 is resolved.
1 parent 38070bd commit 2e0aa7e

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

providers/grizzly/src/test/java/com/ning/http/client/providers/grizzly/GrizzlyProxyTunnelingTest.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Sonatype, Inc. All rights reserved.
2+
* Copyright (c) 2012-2013 Sonatype, Inc. All rights reserved.
33
*
44
* This program is licensed to you under the Apache License Version 2.0,
55
* and you may not use this file except in compliance with the Apache License Version 2.0.
@@ -16,6 +16,12 @@
1616
import com.ning.http.client.AsyncHttpClient;
1717
import com.ning.http.client.AsyncHttpClientConfig;
1818
import com.ning.http.client.async.ProxyTunnellingTest;
19+
import org.testng.annotations.Test;
20+
21+
import java.io.IOException;
22+
import java.util.concurrent.ExecutionException;
23+
import java.util.concurrent.TimeoutException;
24+
1925

2026
public class GrizzlyProxyTunnelingTest extends ProxyTunnellingTest {
2127

@@ -27,4 +33,21 @@ public AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
2733
return new AsyncHttpClient(new GrizzlyAsyncHttpProvider(config), config);
2834
}
2935

36+
@Test(enabled=false)
37+
@Override
38+
public void testRequestProxy() throws IOException, InterruptedException, ExecutionException, TimeoutException {
39+
super.testRequestProxy();
40+
}
41+
42+
@Test(enabled=false)
43+
@Override
44+
public void testConfigProxy() throws IOException, InterruptedException, ExecutionException, TimeoutException {
45+
super.testConfigProxy();
46+
}
47+
48+
@Test(enabled=false)
49+
@Override
50+
public void testSimpleAHCConfigProxy() throws IOException, InterruptedException, ExecutionException, TimeoutException {
51+
super.testSimpleAHCConfigProxy();
52+
}
3053
}

0 commit comments

Comments
 (0)