Searched refs:emptyKeyframe1 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/animation/src/android/animation/cts/ |
D | PropertyValuesHolderTest.java | 162 Keyframe emptyKeyframe1 = Keyframe.ofFloat(.0f); in testResetValues() local 163 ObjectAnimator objAnimator1 = createAnimator(emptyKeyframe1, Keyframe.ofFloat(1f, 100f)); in testResetValues() 165 assertTrue("Keyframe should be assigned a value", emptyKeyframe1.hasValue()); in testResetValues() 167 (float) emptyKeyframe1.getValue(), initialY, 0.0f); in testResetValues() 186 assertEquals((float) emptyKeyframe1.getValue(), initialY, 0.0f); in testResetValues() 200 assertTrue("Keyframe should get a value", emptyKeyframe1.hasValue()); in testResetValues() 202 (float) emptyKeyframe1.getValue(), updatedY, 0.0f); in testResetValues() 222 + " class", emptyKeyframe1.hasValue()); in testResetValues() 224 + " of the same class", (float) emptyKeyframe1.getValue(), updatedY, 0.0f); in testResetValues()
|