List of usage examples for com.squareup.okhttp Protocol SPDY_3
Protocol SPDY_3
To view the source code for com.squareup.okhttp Protocol SPDY_3.
Click Source Link
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void get_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); get(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void head_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); head(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void post_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); post(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void postZeroLength_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); postZeroLength(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void postBodyRetransmittedAfterAuthorizationFail_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); postBodyRetransmittedAfterAuthorizationFail("abc"); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void postEmptyBodyRetransmittedAfterAuthorizationFail_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); postBodyRetransmittedAfterAuthorizationFail(""); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void delete_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); delete(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void put_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); put(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void patch_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); patch(); }
From source file:co.paralleluniverse.fibers.okhttp.CallTest.java
License:Open Source License
@Test public void cancelInFlightBeforeResponseReadThrowsIOE_SPDY_3() throws Exception { enableProtocol(Protocol.SPDY_3); cancelInFlightBeforeResponseReadThrowsIOE(); }