From b6ecd5026e5e64b5e8fb67f84d6c89ec6a24db31 Mon Sep 17 00:00:00 2001 From: A404M Date: Thu, 26 Jun 2025 14:11:59 +0330 Subject: inital commit --- .../com/a404m/mine_game/ExampleInstrumentedTest.kt | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/src/androidTest/java/com/a404m/mine_game/ExampleInstrumentedTest.kt (limited to 'app/src/androidTest/java/com') diff --git a/app/src/androidTest/java/com/a404m/mine_game/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/a404m/mine_game/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..b72d64b --- /dev/null +++ b/app/src/androidTest/java/com/a404m/mine_game/ExampleInstrumentedTest.kt @@ -0,0 +1,27 @@ +package com.a404m.mine_game + +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.mine_game", + appContext.packageName + ) + } +} \ No newline at end of file -- cgit v1.2.3