diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-12-18 03:28:02 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-12-18 03:28:02 +0330 |
commit | d4573cacc141748c44bb6bbea7528bdd46afc3d5 (patch) | |
tree | d5915bd32b2e58bae60ca906ec9475656c8a0e87 /app/src/androidTest/java |
initial commit
Diffstat (limited to 'app/src/androidTest/java')
-rw-r--r-- | app/src/androidTest/java/com/a404m/calculator/ExampleInstrumentedTest.kt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/src/androidTest/java/com/a404m/calculator/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/a404m/calculator/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..785fe9a --- /dev/null +++ b/app/src/androidTest/java/com/a404m/calculator/ExampleInstrumentedTest.kt @@ -0,0 +1,27 @@ +package com.a404m.calculator + +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.a404m.calculator", + appContext.packageName + ) + } +}
\ No newline at end of file |