packagecom.example.common;importandroid.content.Context;importandroidx.test.platform.app.InstrumentationRegistry;importandroidx.test.ext.junit.runners.AndroidJUnit4;importorg.junit.Test;importorg.junit.runner.RunWith;importstaticorg.junit.Assert.*;/** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */@RunWith(AndroidJUnit4.class)publicclassExampleInstrumentedTest{@TestpublicvoiduseAppContext(){// Context of the app under test.ContextappContext=InstrumentationRegistry.getInstrumentation().getTargetContext();assertEquals("com.example.lib_base.test",appContext.getPackageName());}}