Home
last modified time | relevance | path

Searched refs:motionTestValues (Results 1 – 5 of 5) sorted by relevance

/platform_testing/libraries/motion/compose/tests/src/platform/test/motion/compose/
DMotionTestValuesTest.kt35 import platform.test.motion.compose.values.motionTestValues
57 EnableMotionTestValueCollection { Box(Modifier.motionTestValues { 0.5f exportAs foo }) } in motionTestValueOfNode_readsValueOfAnnotatedNode()
67 Box(Modifier.motionTestValues { 0.5f exportAs foo }) in motionTestValueOfNode_multipleMatchingNodes_throws()
68 Box(Modifier.motionTestValues { 0.6f exportAs foo }) in motionTestValueOfNode_multipleMatchingNodes_throws()
86 Box(Modifier.motionTestValues { 0.5f exportAs foo }.testTag("foo")) in motionTestValueOfNode_specifySelector()
87 Box(Modifier.motionTestValues { 0.6f exportAs foo }.testTag("bar")) in motionTestValueOfNode_specifySelector()
100 content = { Box(Modifier.size(10.dp).motionTestValues { .5f exportAs foo }) }, in featureWithDataPointType_defaultMatcherAndName()
114 Modifier.size(10.dp).testTag("foo").motionTestValues { in featureWithDataPointType_matchingViaTestTag()
130 content = { Box(Modifier.size(10.dp).motionTestValues { .5f exportAs foo }) }, in featureWithDataPointType_unknownNode()
144 content = { Box(Modifier.size(10.dp).motionTestValues { .5f exportAs foo }) }, in featureWithDataPointType_withCustomName()
[all …]
DComposeToolkitTest.kt65 import platform.test.motion.compose.values.motionTestValues in <lambda>()
144 .motionTestValues { opacity exportAs MotionTestValues.alpha } in <lambda>()
173 .motionTestValues { opacity exportAs MotionTestValues.alpha } in <lambda>()
182 .motionTestValues { in <lambda>()
252 .motionTestValues { pointerPosition exportAs pointerOffsetKey } in <lambda>()
625 Modifier.motionTestValues { exportedFrameCount exportAs frameCountKey } in <lambda>()
DComposeFeatureCapturesTest.kt38 import platform.test.motion.compose.values.motionTestValues
92 .motionTestValues { opacity exportAs MotionTestValues.alpha } in alpha_capturesDataPoint()
/platform_testing/libraries/motion/compose/tests/src/platform/test/motion/compose/values/
DMotionTestValueTest.kt39 composeRule.setContent { Text("foo", Modifier.motionTestValues { fail() }) } in modifier_isIgnored()
49 Text("foo", Modifier.motionTestValues { 1f exportAs foo }) in modifier_withEnableMotionTesting_isAttached()
/platform_testing/libraries/motion/compose/values/src/platform/test/motion/compose/values/
DMotionTestValue.kt60 fun Modifier.motionTestValues(values: MotionTestValueScope.() -> Unit) = in exportAs() method