org.assertj.android.api.view.animation.AnimationSetAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-android Show documentation
Show all versions of assertj-android Show documentation
A set of AssertJ assertion helpers geared toward testing Android.
The newest version!
// Copyright 2013 Square, Inc.
package org.assertj.android.api.view.animation;
import android.view.animation.AnimationSet;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link AnimationSet} instances. */
public class AnimationSetAssert extends AbstractAnimationAssert {
public AnimationSetAssert(AnimationSet actual) {
super(actual, AnimationSetAssert.class);
}
public AnimationSetAssert hasDurationHint(long duration) {
isNotNull();
long actualDuration = actual.computeDurationHint();
assertThat(actualDuration) //
.overridingErrorMessage("Expected duration hint <%s> but was <%s>.", duration,
actualDuration) //
.isEqualTo(duration);
return this;
}
public AnimationSetAssert hasAnimationCount(int count) {
isNotNull();
int actualCount = actual.getAnimations().size();
assertThat(actualCount) //
.overridingErrorMessage("Expected animation count <%s> but was <%s>.", count,
actualCount) //
.isEqualTo(count);
return this;
}
}