diff options
| author | Nazario <francisco.nazario@logixsdigital.com> | 2023-06-02 11:28:39 +0200 |
|---|---|---|
| committer | Nazario <francisco.nazario@logixsdigital.com> | 2023-06-02 11:28:39 +0200 |
| commit | 69d52a32ce7839d78639a40d5a28f556f9206f1a (patch) | |
| tree | 0883a1f1031ca3abf04b6242b404b9acfb0bc4a1 /app/src/androidTest/java/com/frannazario/proyectoandroid | |
| parent | f815a7bee9e669cc4981f08c6fbca869b7a5ba1e (diff) | |
init commitmain
Diffstat (limited to 'app/src/androidTest/java/com/frannazario/proyectoandroid')
| -rw-r--r-- | app/src/androidTest/java/com/frannazario/proyectoandroid/ExampleInstrumentedTest.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/androidTest/java/com/frannazario/proyectoandroid/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/frannazario/proyectoandroid/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..6c3e781 --- /dev/null +++ b/app/src/androidTest/java/com/frannazario/proyectoandroid/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.frannazario.proyectoandroid + +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.frannazario.proyectoandroid", appContext.packageName) + } +}
\ No newline at end of file |