From 2c107c6dd13e5778099bbd88d4463cec7e3e99c1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 17 Jun 2023 23:45:57 +0200 Subject: Found on an old harddrive --- .../de/marvinborner/pi/ExampleInstrumentedTest.kt | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 app/src/androidTest/java/de/marvinborner/pi/ExampleInstrumentedTest.kt (limited to 'app/src/androidTest') diff --git a/app/src/androidTest/java/de/marvinborner/pi/ExampleInstrumentedTest.kt b/app/src/androidTest/java/de/marvinborner/pi/ExampleInstrumentedTest.kt new file mode 100755 index 0000000..0deeaf5 --- /dev/null +++ b/app/src/androidTest/java/de/marvinborner/pi/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package de.marvinborner.pi + +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("de.marvinborner.pi", appContext.packageName) + } +} \ No newline at end of file -- cgit v1.2.3