1c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath/*
23c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fuller * Copyright (C) 2013 Square, Inc.
3c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath *
4c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * Licensed under the Apache License, Version 2.0 (the "License");
5c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * you may not use this file except in compliance with the License.
6c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * You may obtain a copy of the License at
7c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath *
8c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath *      http://www.apache.org/licenses/LICENSE-2.0
9c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath *
10c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * Unless required by applicable law or agreed to in writing, software
11c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * distributed under the License is distributed on an "AS IS" BASIS,
12c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * See the License for the specific language governing permissions and
14c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath * limitations under the License.
15c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath */
163c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fullerpackage com.squareup.okhttp.internal.http;
17c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath
183c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fullerimport com.squareup.okhttp.Protocol;
19c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath
203c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fullerpublic class HttpOverSpdy3Test extends HttpOverSpdyTest {
21c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath
223c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fuller  public HttpOverSpdy3Test() {
233c938a3f6b61ce5e2dba0d039b03fe73b89fd26cNeil Fuller    super(Protocol.SPDY_3);
2454cf3446000fdcf88a9e62724f7deb0282e98da1jwilson  }
25c3f6f16bd4a2338e88275641b9f2f56e816ca377Narayan Kamath}
26