AndroidX Test 包含一组JUnit 规则,可与AndroidJUnitRunner一起使用。JUnit 规则提供了更大的灵活性,并减少了测试中所需的样板代码。例如,它们可用于启动特定活动。
ActivityScenarioRule
此规则提供单个活动的函数测试。此规则会在使用@Test
注释的每个测试之前以及在使用@Before
注释的任何方法之前启动选定的活动。此规则会在测试完成后以及所有使用@After
注释的方法完成后终止活动。要在测试逻辑中访问给定的活动,请向ActivityScenarioRule.getScenario().onActivity()
提供回调可运行对象。
以下代码片段演示了如何将ActivityScenarioRule
整合到您的测试逻辑中。
Kotlin
@RunWith(AndroidJUnit4::class.java) @LargeTest class MyClassTest { @get:Rule val activityRule = ActivityScenarioRule(MyClass::class.java) @Test fun myClassMethod_ReturnsTrue() { activityRule.scenario.onActivity { … } // Optionally, access the activity. } }
Java
public class MyClassTest { @Rule public ActivityScenarioRule<MyClass> activityRule = new ActivityScenarioRule(MyClass.class); @Test public void myClassMethod_ReturnsTrue() { ... } }
ServiceTestRule
此规则提供了一种简化的机制,可以在测试之前启动服务,并在测试之前和之后将其关闭。您可以使用一种辅助方法启动或绑定服务。它会在测试完成后以及任何使用@After
注释的方法完成后自动停止或取消绑定。
Kotlin
@RunWith(AndroidJUnit4::class.java) @MediumTest class MyServiceTest { @get:Rule val serviceRule = ServiceTestRule() @Test fun testWithStartedService() { serviceRule.startService( Intent(ApplicationProvider.getApplicationContext<Context>(), MyService::class.java)) // Add your test code here. } @Test fun testWithBoundService() { val binder = serviceRule.bindService( Intent(ApplicationProvider.getApplicationContext(), MyService::class.java)) val service = (binder as MyService.LocalBinder).service assertThat(service.doSomethingToReturnTrue()).isTrue() } }
Java
@RunWith(AndroidJUnit4.class) @MediumTest public class MyServiceTest { @Rule public final ServiceTestRule serviceRule = new ServiceTestRule(); @Test public void testWithStartedService() { serviceRule.startService( new Intent(ApplicationProvider.getApplicationContext(), MyService.class)); // Add your test code here. } @Test public void testWithBoundService() { IBinder binder = serviceRule.bindService( new Intent(ApplicationProvider.getApplicationContext(), MyService.class)); MyService service = ((MyService.LocalBinder) binder).getService(); assertThat(service.doSomethingToReturnTrue()).isTrue(); } }
其他资源
有关在 Android 测试中使用 JUnit 规则的更多信息,请参阅以下资源。
文档
- 测试您的碎片 指南,用于单独测试碎片。
- 测试您的 Compose 布局,用于测试使用 Compose 创建的 UI。
示例
- BasicSample:
ActivityScenarioRule
的简单用法。