Skip to content

Instantly share code, notes, and snippets.

@andersu
Created November 17, 2020 11:04
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 andersu/d4d99fa6a699fcc4ad17acdb8a85b42e to your computer and use it in GitHub Desktop.
Save andersu/d4d99fa6a699fcc4ad17acdb8a85b42e to your computer and use it in GitHub Desktop.
private val myTextView = onView(withId(R.id.my_text_view))
fun checkContentDescription(text: String) {
myTextView.check { view, _ ->
assertEquals(view.contentDescription, text)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment