@Test
public void partialInterpolator_isModified_when_setPartialInterpolator_isCalled() {
//given
StaggeredAnimationGroup spiedGroup = prepareSpiedGroup();
Interpolator testInterpolator = new LinearOutSlowInInterpolator();
//when
spiedGroup.setPartialInterpolator(testInterpolator);
//then
assertThat(spiedGroup.partialInterpolator).isEqualTo(testInterpolator);
}
StaggeredAnimationGroupTest.java 文件源码
java
阅读 34
收藏 0
点赞 0
评论 0
项目:StaggeredAnimationGroup
作者:
评论列表
文章目录