假设我在整个应用程序中使用了一些顶级静态CompositionLocal:
val Local配置 = staticCompositionLocalOf<配置> { error("no config") }
@Composable fun App() {
CompositionLocalProvider(Local配置 provides 配置(...,...,...)) {
app()
}
}
然后,查询文档内容的最佳方法是什么 配置
组合单元测试中的实例?文章源自玩技e族-https://www.playezu.com/206657.html
class BasicTest {
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun myTest(): Unit = with(composeTestRule) {
setContent { App() }
// do stuff
val config : 配置 = /* something */
assertEquals(config.foo(), "foo")
}
}
我在尽量避免分配假定的任务 配置
实例转换为全局变量,然后使用该变量。文章源自玩技e族-https://www.playezu.com/206657.html
软件功能测试表格文章源自玩技e族-https://www.playezu.com/206657.html 文章源自玩技e族-https://www.playezu.com/206657.html
评论