Skip to content

Instantly share code, notes, and snippets.

@sliskiCode
Last active January 2, 2018 10:20
Show Gist options
  • Save sliskiCode/541ea5364fffd718d92b0694fa072b7e to your computer and use it in GitHub Desktop.
Save sliskiCode/541ea5364fffd718d92b0694fa072b7e to your computer and use it in GitHub Desktop.
6 magic sugars that can make your Kotlin codebase happier #26
class SearchTest : UITest() {
@Before
fun setup() {
navigation {
openScreenOne()
}
}
@Test
fun `shows searched items`() {
val searchQuery = "foo"
toolbar {
} openSearch {
type(searchQuery)
}
screenOne {
hasItemWithText(searchQuery)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment