Skip to content

Instantly share code, notes, and snippets.

View trietbui85's full-sized avatar

trietbui85 trietbui85

  • Zalora
  • HCMC, Vietnam
  • 08:06 (UTC +07:00)
View GitHub Profile
@trietbui85
trietbui85 / test_button_add_clicked.kt
Last active July 29, 2020 13:42
Unit test Android custom view with AndroidX Test and Robolectric
@Test
fun testButtonAddIsClicked() {
countView.reset()
buttonAdd.performClick()
assertThat(countView.countValue).isEqualTo(1)
assertThat(textViewValue.text.toString()).isEqualTo("1")
buttonAdd.performClick()
assertThat(countView.countValue).isEqualTo(2)