packageinfo.hook.com.moduleprojectimportandroidx.test.InstrumentationRegistryimportandroidx.test.runner.AndroidJUnit4importorg.junit.Testimportorg.junit.runner.RunWithimportorg.junit.Assert.*/** * Instrumented test, which will execute on an Android device. * * See [testing documentation](http://d.android.com/tools/testing). */@RunWith(AndroidJUnit4::class)classExampleInstrumentedTest{@TestfunuseAppContext(){// Context of the app under test.valappContext=InstrumentationRegistry.getTargetContext()assertEquals("info.hook.com.moduleproject",appContext.packageName)}}