Home
last modified time | relevance | path

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

/cts/tests/tests/animation/src/android/animation/cts/
DAnimatorSetTest.java645 ObjectAnimator animator2 = new ObjectAnimator(); in testClone() local
646 animator2.setDuration(100); in testClone()
647 animator2.setInterpolator(new LinearInterpolator()); in testClone()
648 animator2.addListener(listener2); in testClone()
649 animator2.setPropertyName("y"); in testClone()
650 animator2.setIntValues(10); in testClone()
652 set1.playTogether(animator1, animator2); in testClone()
665 assertUnique(animator2); in testClone()
687 assertEquals(animator2.getDuration(), clone2.getDuration()); in testClone()
689 assertSame(animator2.getInterpolator(), clone2.getInterpolator()); in testClone()