assertTouchHeightIsEqualTo
Source set: Common
@Deprecated(
message = "Use assertTouchHeightIsEqualTo with tolerance",
level = DeprecationLevel.HIDDEN,
)
public fun SemanticsNodeInteraction.assertTouchHeightIsEqualTo(
expectedHeight: Dp
): SemanticsNodeInteraction
Asserts that the touch bounds of this node has height equal to expectedHeight.
Throws: AssertionError
if comparison fails.
assertTouchHeightIsEqualTo
Source set: Common
public fun SemanticsNodeInteraction.assertTouchHeightIsEqualTo(
expectedHeight: Dp,
tolerance: Dp = 0.5.dp,
): SemanticsNodeInteraction
Asserts that the touch bounds of this node has height equal to expectedHeight within the given tolerance.
Parameters
| expectedHeight | The expected touch height of the layout. |
| tolerance | The tolerance within which the values should be treated as equal. Defaults to 0.5.dp. |
Throws: AssertionError
if comparison fails.