summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2014-01-11 18:44:50 +0100
committerYves Fischer <yvesf-git@xapek.org>2014-01-11 18:48:48 +0100
commit002a2c3e1d0f091a48f8cc3eb7dce519870debaf (patch)
tree64140ef20603bcf66dc33b8f2c5416d006547cb1 /tests/src
downloadandiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.tar.gz
andiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.zip
import code
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/xapek/andiodine/HelloJniTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/src/org/xapek/andiodine/HelloJniTest.java b/tests/src/org/xapek/andiodine/HelloJniTest.java
new file mode 100644
index 0000000..14322f3
--- /dev/null
+++ b/tests/src/org/xapek/andiodine/HelloJniTest.java
@@ -0,0 +1,22 @@
+package org.xapek.andiodine;
+
+import android.test.ActivityInstrumentationTestCase2;
+
+import org.xapek.andiodine.IodineMain;
+
+/**
+ * This is a simple framework for a test of an Application. See
+ * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
+ * how to write and extend Application tests.
+ * <p/>
+ * To run this test, you can type:
+ * adb shell am instrument -w \
+ * -e class org.xapek.andiodine.HelloJniTest \
+ * com.example.HelloJni.tests/android.test.InstrumentationTestRunner
+ */
+public class HelloJniTest extends ActivityInstrumentationTestCase2<org.xapek.andiodine.IodineMain> {
+ public HelloJniTest() {
+ super(IodineMain.class);
+ }
+
+}