diff options
| author | Blaster4385 <[email protected]> | 2025-05-01 17:17:44 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2025-05-02 09:58:01 +0530 |
| commit | 34712408abd6accff0d72ff3962dded2de81396a (patch) | |
| tree | 5b8a2361a39a2d331ff16fb83050c1173d2bca9a /app/src/androidTest | |
Initial app
Diffstat (limited to 'app/src/androidTest')
| -rw-r--r-- | app/src/androidTest/java/dev/tablaster/dashpanel/ExampleInstrumentedTest.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/dev/tablaster/dashpanel/ExampleInstrumentedTest.kt b/app/src/androidTest/java/dev/tablaster/dashpanel/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..26c7387 --- /dev/null +++ b/app/src/androidTest/java/dev/tablaster/dashpanel/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package dev.tablaster.dashpanel + +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("dev.tablaster.myapplication", appContext.packageName) + } +}
\ No newline at end of file |