1
1
/*
2
- * Copyright (c) 2012 Sonatype, Inc. All rights reserved.
2
+ * Copyright (c) 2012-2013 Sonatype, Inc. All rights reserved.
3
3
*
4
4
* This program is licensed to you under the Apache License Version 2.0,
5
5
* and you may not use this file except in compliance with the Apache License Version 2.0.
16
16
import com .ning .http .client .AsyncHttpClient ;
17
17
import com .ning .http .client .AsyncHttpClientConfig ;
18
18
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
+
19
25
20
26
public class GrizzlyProxyTunnelingTest extends ProxyTunnellingTest {
21
27
@@ -27,4 +33,21 @@ public AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
27
33
return new AsyncHttpClient (new GrizzlyAsyncHttpProvider (config ), config );
28
34
}
29
35
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
+ }
30
53
}
0 commit comments