summaryrefslogtreecommitdiff
path: root/app/src/androidTest/java/com/draco
diff options
context:
space:
mode:
authorTyler Nijmeh <tylernij@gmail.com>2021-03-30 19:14:46 -0700
committerTyler Nijmeh <tylernij@gmail.com>2021-03-30 19:14:46 -0700
commit00acb7483a1c207670062d15991a82266b91735c (patch)
tree8ab206f5aec4bf7e9f5a5c166a9343240c21b4b6 /app/src/androidTest/java/com/draco
Initial commit
Signed-off-by: Tyler Nijmeh <tylernij@gmail.com>
Diffstat (limited to 'app/src/androidTest/java/com/draco')
-rw-r--r--app/src/androidTest/java/com/draco/buoy/ExampleInstrumentedTest.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/com/draco/buoy/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/draco/buoy/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..db4dd93
--- /dev/null
+++ b/app/src/androidTest/java/com/draco/buoy/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.draco.buoy
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.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.getInstrumentation().targetContext
+ assertEquals("com.draco.buoy", appContext.packageName)
+ }
+} \ No newline at end of file