From 9d430209d39d0e68f6311adfff9d476c8856f662 Mon Sep 17 00:00:00 2001 From: Joe Robinson Date: Sat, 20 Apr 2019 03:56:13 +0200 Subject: Initial commit - working file list view --- .../blatech/blaupload3/ExampleInstrumentedTest.kt | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt (limited to 'app/src/androidTest/java/uk') 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) + } +} -- cgit v1.2.3