diff options
author | Kenny Root <kenny@the-b.org> | 2015-08-28 00:17:24 -0700 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2015-08-28 00:17:24 -0700 |
commit | 1b09070fbf3f1224a5d509c5954ef9560eaf9ba1 (patch) | |
tree | c8550931954db1ce4bddc2a9fb6d80b0056cfba4 /app/src/test/java/android/net/http/AndroidHttpClient.java | |
parent | b3f5f9b41c89f74792f2a027ed2ab31a60c88b5e (diff) | |
parent | f6ef2b5e6a4f33ce1d14c5a0d802b30a446ae2bf (diff) | |
download | connectbot-1b09070fbf3f1224a5d509c5954ef9560eaf9ba1.tar.gz connectbot-1b09070fbf3f1224a5d509c5954ef9560eaf9ba1.tar.bz2 connectbot-1b09070fbf3f1224a5d509c5954ef9560eaf9ba1.zip |
Merge pull request #157 from kruton/android-test
Create test for local connections
Diffstat (limited to 'app/src/test/java/android/net/http/AndroidHttpClient.java')
-rw-r--r-- | app/src/test/java/android/net/http/AndroidHttpClient.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/src/test/java/android/net/http/AndroidHttpClient.java b/app/src/test/java/android/net/http/AndroidHttpClient.java new file mode 100644 index 0000000..701510b --- /dev/null +++ b/app/src/test/java/android/net/http/AndroidHttpClient.java @@ -0,0 +1,25 @@ +/* + * ConnectBot: simple, powerful, open-source SSH client for Android + * Copyright 2015 Kenny Root, Jeffrey Sharkey + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.net.http; + +/** + * This is a work-around until Robolectric 3.1 comes out with the fix for this. + * https://github.com/robolectric/robolectric/issues/1862 + */ +public class AndroidHttpClient { +} |