### touchInputAssertDuringClick
```kotlin
fun touchInputAssertDuringClick() {
    composeTestRule
        .onNodeWithTag("myComponent")
        .performTouchInput { down(topLeft) }
        .assertHasClickAction()
        .performTouchInput { up() }
}
```
### touchInputClickAndDrag
```kotlin
fun touchInputClickAndDrag() {
    composeTestRule.onNodeWithTag("myComponent").performTouchInput {
        click()
        advanceEventTime(100)
        swipeUp()
    }
}
```
### touchInputClickOffCenter
```kotlin
fun touchInputClickOffCenter() {
    composeTestRule.onNodeWithTag("myComponent").performTouchInput {
        click(percentOffset(.2f, .5f))
    }
}
```
### touchInputSwipeUp
```kotlin
fun touchInputSwipeUp() {
    composeTestRule.onNodeWithTag("myComponent").performTouchInput { swipeUp() }
}
```