summaryrefslogtreecommitdiff
path: root/app/src/androidTest/legacy/FromAssets.java
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2018-02-06 16:28:34 +0100
committercyBerta <cyberta@riseup.net>2018-02-06 16:28:34 +0100
commit3d827e7295d37ecb25332b39057338496f6f970d (patch)
treef8c5272e125ed9abae72fb3598d25b1c09f06f89 /app/src/androidTest/legacy/FromAssets.java
parent646e2ec7b868920f71c29243d2bbeb13deb811e3 (diff)
parentedd34192484f4eb618fdcc2a68b18168c155d63c (diff)
Merge branch 'origin_0.9.8' into 8823_cw_tablet_layout
Diffstat (limited to 'app/src/androidTest/legacy/FromAssets.java')
-rw-r--r--app/src/androidTest/legacy/FromAssets.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/androidTest/legacy/FromAssets.java b/app/src/androidTest/legacy/FromAssets.java
new file mode 100644
index 00000000..6a4c1ee2
--- /dev/null
+++ b/app/src/androidTest/legacy/FromAssets.java
@@ -0,0 +1,26 @@
+package se.leap.bitmaskclient.test;
+
+import android.content.*;
+
+import org.json.*;
+
+import java.io.*;
+
+public class FromAssets {
+
+ Context context;
+
+ public FromAssets(Context context) {
+ this.context = context;
+ }
+
+ public String toString(String filename) throws IOException, JSONException {
+ String result = "";
+ InputStream is = context.getAssets().open(filename);
+ byte[] bytes = new byte[is.available()];
+ if (is.read(bytes) > 0) {
+ result = new String(bytes);
+ }
+ return result;
+ }
+}