如何使用浓缩咖啡测试Android黑暗模式



使用Espresso在Android上测试不同的DayNight主题的最佳方法是什么?(或更好的东西?我在互联网上没有找到任何东西。我想这一定是一件大事,因为现在一切都迁移到了DayNight。

我想知道诸如"当我单击此按钮时,我的活动主题是否更改"或"我有此背景和此文本,对比度正确"。

提前谢谢。

我发现这有效:

@get:Rule
val activityTestRule = ActivityScenarioRule(...Activity::class.java)
private fun createActivityScenarioRule(withNightMode: Boolean = false) =
activityTestRule.scenario.apply {
onActivity {
AppCompatDelegate.setDefaultNightMode(
if (withNightMode) AppCompatDelegate.MODE_NIGHT_YES
else AppCompatDelegate.MODE_NIGHT_NO
)
}
}

最新更新