From bdcf56a800b69f4c5095a0777cec39adbce9d22d Mon Sep 17 00:00:00 2001 From: 202310715066 NABILA SUWANDIRA <202310715066@mhs.ubharajaya.ac.id> Date: Thu, 25 Sep 2025 14:56:45 +0700 Subject: [PATCH] Upload files to "/" --- ExampleInstrumentedTest.kt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ExampleInstrumentedTest.kt diff --git a/ExampleInstrumentedTest.kt b/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..9dd49e3 --- /dev/null +++ b/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.nabila + +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.example.nabila", appContext.packageName) + } +} \ No newline at end of file