Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 17, 2023 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zurche/876313ee9d25d648260a359b6b5e3dbe to your computer and use it in GitHub Desktop.
Save zurche/876313ee9d25d648260a359b6b5e3dbe to your computer and use it in GitHub Desktop.
Full test
@Test
fun whenFavouriteIsTrueThenFilledHeartIconIsDisplayed() {
val isFavourite = true
composeTestRule.setContent {
ClothingAppTDDTheme {
FavouriteButton(isFavourite)
}
}
composeTestRule.onNodeWithContentDescription("Filled Heart Icon").assertIsDisplayed()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment