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()throwsException{// Context of the app under test.ContextappContext=InstrumentationRegistry.getTargetContext();assertEquals("com.ydl.ydl_muse.test",appContext.getPackageName());}}