Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 17, 2023 14:40
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/a37c4f10c7b0c5ad14f89a9b118fe628 to your computer and use it in GitHub Desktop.
Save zurche/a37c4f10c7b0c5ad14f89a9b118fe628 to your computer and use it in GitHub Desktop.
Second Test
@Test
fun whenFavouriteIsFalseThenEmptyHeartIconIsDisplayed() {
val isFavourite = false
composeTestRule.setContent {
ClothingAppTDDTheme {
FavouriteButton(isFavourite)
}
}
composeTestRule.onNodeWithContentDescription("Empty Heart Icon").assertIsDisplayed()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment