forked from hitherejoe/ComposeAcademy-Playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerticalSwipeTests.kt
52 lines (45 loc) · 1.34 KB
/
VerticalSwipeTests.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package co.joebirch.composeplayground.action
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.ui.core.Modifier
import androidx.ui.core.TestTag
import androidx.ui.foundation.AdapterList
import androidx.ui.foundation.Text
import androidx.ui.layout.padding
import androidx.ui.material.MaterialTheme
import androidx.ui.material.Surface
import androidx.ui.test.*
import androidx.ui.unit.dp
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Rule
import java.util.*
@RunWith(AndroidJUnit4::class)
class VerticalSwipeTests {
@get:Rule
val composeTestRule = createComposeRule()
private fun launchContent() {
composeTestRule.setContent {
MaterialTheme {
Surface {
val content = (0..100).map { UUID.randomUUID().toString() }
TestTag(tag = "MyTag") {
AdapterList(data = content) {
Text(
text = it,
modifier = Modifier.padding(16.dp)
)
}
}
}
}
}
}
@Test
fun testSwipeVertical() {
launchContent()
findByTag("MyTag").doGesture {
sendSwipeUp()
sendSwipeDown()
}
}
}