Home
last modified time | relevance | path

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

/cts/tests/tests/transition/src/android/transition/cts/
DPatternPathMotionTest.java38 PatternPathMotion pathMotion = new PatternPathMotion(pattern); in testStraightPath() local
39 assertPathMatches(pattern, pathMotion.getPatternPath()); in testStraightPath()
45 assertPathMatches(expected, pathMotion.getPath(0, 0, 100, 100)); in testStraightPath()
53 PatternPathMotion pathMotion = new PatternPathMotion(pattern); in testCurve() local
54 assertPathMatches(pattern, pathMotion.getPatternPath()); in testCurve()
59 assertPathMatches(expected, pathMotion.getPath(0, 0, 0, 100)); in testCurve()
DTransitionSetTest.java157 PathMotion pathMotion = new ArcMotion(); in testSetTransferValuesDuringAdd() local
167 transitionSet.setPathMotion(pathMotion); in testSetTransferValuesDuringAdd()
174 assertSame(pathMotion, fade.getPathMotion()); in testSetTransferValuesDuringAdd()
213 PathMotion pathMotion = new ArcMotion(); in testSetNoTransferValuesDuringAdd() local
223 fade.setPathMotion(pathMotion); in testSetNoTransferValuesDuringAdd()
232 assertSame(pathMotion, fade.getPathMotion()); in testSetNoTransferValuesDuringAdd()
DTransitionTest.java498 PathMotion pathMotion = new ArcMotion(); in testPathMotion() local
499 mTransition.setPathMotion(pathMotion); in testPathMotion()
500 assertEquals(pathMotion, mTransition.getPathMotion()); in testPathMotion()