-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
AssertOnOffTests.kt
50 lines (44 loc) · 1.39 KB
/
AssertOnOffTests.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
package co.joebirch.composeplayground.assertions
import androidx.compose.foundation.layout.Box
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Surface
import androidx.compose.material.Switch
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.test.assertIsOff
import androidx.compose.ui.test.assertIsOn
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithTag
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@RunWith(AndroidJUnit4::class)
class AssertOnOffTests {
@get:Rule
val composeTestRule = createComposeRule()
private fun launchContent(isOn: Boolean) {
composeTestRule.setContent {
MaterialTheme {
Surface {
Box {
Switch(
checked = isOn, onCheckedChange = { },
modifier = Modifier.testTag("MyTag")
)
}
}
}
}
}
@Test
fun testExists() {
launchContent(true)
composeTestRule.onNodeWithTag("MyTag").assertIsOn()
}
@Test
fun testNotExists() {
launchContent(false)
composeTestRule.onNodeWithTag("MyTag").assertIsOff()
}
}