Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DFixedSizeEdgeDetectorTest.kt37 fun horizontalEdge(position: Int): Edge? = in horizontalEdges() method
45 assertThat(horizontalEdge(0)).isEqualTo(Edge.Left) in horizontalEdges()
46 assertThat(horizontalEdge(30)).isEqualTo(Edge.Left) in horizontalEdges()
47 assertThat(horizontalEdge(31)).isEqualTo(null) in horizontalEdges()
48 assertThat(horizontalEdge(69)).isEqualTo(null) in horizontalEdges()
49 assertThat(horizontalEdge(70)).isEqualTo(Edge.Right) in horizontalEdges()
50 assertThat(horizontalEdge(100)).isEqualTo(Edge.Right) in horizontalEdges()