Skip to content

Instantly share code, notes, and snippets.

@ngallazzi
Created December 29, 2023 12:03
Show Gist options
  • Save ngallazzi/d425524c14bc8f0f24912b81984ba25c to your computer and use it in GitHub Desktop.
Save ngallazzi/d425524c14bc8f0f24912b81984ba25c to your computer and use it in GitHub Desktop.
Compose UI Rule
class MyLayoutTest {
@get:Rule
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
@Test
fun testMyLayout() {
// Start the app
composeTestRule.setContent {
MyLayout()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment