aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Zelent <zelent.marcin@gmail.com>2018-03-27 18:05:44 +0200
committerMarcin Zelent <zelent.marcin@gmail.com>2018-03-27 18:05:44 +0200
commit6838e72ab0710a831e2b49b4cc173dbe34abfe28 (patch)
tree1069cbec156cf4c5e34becd5da0dbfe05093a365 /app/src/androidTest/java
parent8e465bf50df482b80e4996ea2a5ed9200e04f896 (diff)
Created project
Diffstat (limited to 'app/src/androidTest/java')
-rw-r--r--app/src/androidTest/java/org/marcinzelent/liberavem/ExampleInstrumentedTest.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/org/marcinzelent/liberavem/ExampleInstrumentedTest.kt b/app/src/androidTest/java/org/marcinzelent/liberavem/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..4da97c0
--- /dev/null
+++ b/app/src/androidTest/java/org/marcinzelent/liberavem/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package org.marcinzelent.liberavem
+
+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("org.marcinzelent.liberavem", appContext.packageName)
+ }
+}