diff options
author | Joe Robinson <joe@lc8n.com> | 2019-04-20 03:56:13 +0200 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2019-04-20 03:56:13 +0200 |
commit | 9d430209d39d0e68f6311adfff9d476c8856f662 (patch) | |
tree | f31e91badaafb62825e737e435d55cd89301a9ae /app/src/androidTest/java/uk/co/blatech |
Initial commit - working file list view
Diffstat (limited to 'app/src/androidTest/java/uk/co/blatech')
-rw-r--r-- | app/src/androidTest/java/uk/co/blatech/blaupload3/ExampleInstrumentedTest.kt | 24 |
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) + } +} |