diff options
| author | LeightonGinty <lxg184@student.bham.ac.uk> | 2024-11-16 12:30:59 +0000 |
|---|---|---|
| committer | LeightonGinty <lxg184@student.bham.ac.uk> | 2024-11-16 12:30:59 +0000 |
| commit | 76d57724d624dbf0f2c81863f7d0b3c6a2bad7d0 (patch) | |
| tree | 038b7f47630e2a48b617a414535dce83ac1a870f /app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt | |
Initial commit
Diffstat (limited to 'app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt')
| -rw-r--r-- | app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..dba1e81 --- /dev/null +++ b/app/src/androidTest/java/com/example/alcagotchi/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.alcagotchi + +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.example.alcagotchi", appContext.packageName) + } +}
\ No newline at end of file |
