summaryrefslogtreecommitdiff
path: root/app/src/androidTest/java
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2019-04-20 03:56:13 +0200
committerJoe Robinson <joe@lc8n.com>2019-04-20 03:56:13 +0200
commit9d430209d39d0e68f6311adfff9d476c8856f662 (patch)
treef31e91badaafb62825e737e435d55cd89301a9ae /app/src/androidTest/java
Initial commit - working file list view
Diffstat (limited to 'app/src/androidTest/java')
-rw-r--r--app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt b/app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..b92a631
--- /dev/null
+++ b/app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package uk.co.blatech.blaupload3
+
+import android.support.test.InstrumentationRegistry
+import android.support.test.runner.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getTargetContext()
+ assertEquals("uk.co.blatech.blaupload3", appContext.packageName)
+ }
+}