Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@PiotrPrus
Created December 31, 2021 11:21
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 PiotrPrus/da114831bcdc343fee2eca52837cddb4 to your computer and use it in GitHub Desktop.
Save PiotrPrus/da114831bcdc343fee2eca52837cddb4 to your computer and use it in GitHub Desktop.
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun checkCanvasExistence() {
val list = mutableStateOf(listOf(1, 2, 3, 4, 5, 6, 7, 8))
composeTestRule.setContent {
BarChartCanvas(list = list.value, barSelected = { })
}
composeTestRule.onNodeWithTag(testTag = "BarChart").assertExists()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment