Searched refs:emptyKeyframe1 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/animation/src/android/animation/cts/ |
D | PropertyValuesHolderTest.java | 137 Keyframe emptyKeyframe1 = Keyframe.ofFloat(.0f); in testResetValues() local 138 ObjectAnimator objAnimator1 = createAnimator(emptyKeyframe1, Keyframe.ofFloat(1f, 100f)); in testResetValues() 140 assertTrue("Keyframe should be assigned a value", emptyKeyframe1.hasValue()); in testResetValues() 141 assertEquals("Keyframe should get the value from the target", emptyKeyframe1.getValue(), in testResetValues() 160 assertEquals(emptyKeyframe1.getValue(), initialY); in testResetValues() 174 assertTrue("Keyframe should get a value", emptyKeyframe1.hasValue()); in testResetValues() 175 … assertEquals("Keyframe should get the updated Y value", emptyKeyframe1.getValue(), updatedY); in testResetValues() 195 + " class", emptyKeyframe1.hasValue()); in testResetValues() 197 + " of the same class", emptyKeyframe1.getValue(), updatedY); in testResetValues()
|