🌈 Create new beautiful Compose Gradients with our new wesite ->
Function

assertTouchWidthIsEqualTo

Asserts that the touch bounds of this node has width equal to expectedWidth.

assertTouchWidthIsEqualTo

Source set: Common
@Deprecated(
    message = "Use assertTouchWidthIsEqualTo with tolerance",
    level = DeprecationLevel.HIDDEN,
)
public fun SemanticsNodeInteraction.assertTouchWidthIsEqualTo(
    expectedWidth: Dp
): SemanticsNodeInteraction

Asserts that the touch bounds of this node has width equal to expectedWidth.

Throws: AssertionError

if comparison fails.

assertTouchWidthIsEqualTo

Source set: Common
public fun SemanticsNodeInteraction.assertTouchWidthIsEqualTo(
    expectedWidth: Dp,
    tolerance: Dp = 0.5.dp,
): SemanticsNodeInteraction

Asserts that the touch bounds of this node has width equal to expectedWidth within the given tolerance.

Parameters

expectedWidth The expected touch width 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.