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

assertHeightIsEqualTo

Asserts that the layout of this node has height equal to expectedHeight.

assertHeightIsEqualTo

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

Asserts that the layout of this node has height equal to expectedHeight.

Throws: AssertionError

if comparison fails.

assertHeightIsEqualTo

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

Asserts that the layout of this node has height equal to expectedHeight within the given tolerance.

Parameters

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