Start native apps faster with the Composables CLI ->
Function

assertWidthIsEqualTo

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

assertWidthIsEqualTo

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

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

Throws: AssertionError

if comparison fails.

assertWidthIsEqualTo

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

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

Parameters

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