Last active
February 24, 2021 14:52
-
-
Save igorescodro/9695f32d227d4f25b631924357ea0b33 to your computer and use it in GitHub Desktop.
Compose tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal class MyComposableTest { | |
@get:Rule | |
val composeTestRule = createComposeRule() | |
@Before | |
fun setup() { | |
composeTestRule.setContent { | |
MyTheme { | |
MyComposable() | |
} | |
} | |
} | |
@Test | |
fun test_TitleIsShown() { | |
composeTestRule.onNodeWithText("Title").assertIsDisplayed() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment