package app.mango.music 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("app.mango.music", appContext.packageName) } }
时间: 2024-04-20 09:23:36 浏览: 179
andriod-junit.zip
这是一个示例的仪器化测试类,用于在Android设备上执行测试。它使用了JUnit4运行器,并包含一个名为`useAppContext`的测试方法。该方法获取应用程序的上下文,并断言应用程序的包名为`app.mango.music`。测试的目的是确保应用程序的上下文正确地返回了包名。
请注意,这只是一个示例测试类,你可以根据自己的需求修改和扩展测试方法。
阅读全文