org.assertj.android.api.animation.AbstractAnimatorAssert 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.animation;
import android.animation.Animator;
import android.animation.TimeInterpolator;
import android.annotation.TargetApi;
import org.assertj.core.api.AbstractAssert;
import static android.os.Build.VERSION_CODES.HONEYCOMB;
import static android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH;
import static android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
import static android.os.Build.VERSION_CODES.KITKAT;
import static org.assertj.core.api.Assertions.assertThat;
@TargetApi(HONEYCOMB)
public abstract class AbstractAnimatorAssert, A extends Animator>
extends AbstractAssert {
protected AbstractAnimatorAssert(A actual, Class selfType) {
super(actual, selfType);
}
public S hasDuration(long duration) {
isNotNull();
long actualDuration = actual.getDuration();
assertThat(actualDuration) //
.overridingErrorMessage("Expected duration <%s> but was <%s>.", duration, actualDuration) //
.isEqualTo(duration);
return myself;
}
@TargetApi(JELLY_BEAN_MR2)
public S hasInterpolator(TimeInterpolator interpolator) {
isNotNull();
TimeInterpolator actualInterpolator = actual.getInterpolator();
assertThat(actualInterpolator) //
.overridingErrorMessage("Expected interpolator <%s> but was <%s>.", interpolator,
actualInterpolator) //
.isEqualTo(interpolator);
return myself;
}
public S hasListener(Animator.AnimatorListener listener) {
isNotNull();
assertThat(actual.getListeners()) //
.overridingErrorMessage("Expected listener <%s> but was not present.") //
.contains(listener);
return myself;
}
public S hasStartDelay(long delay) {
isNotNull();
long actualDelay = actual.getStartDelay();
assertThat(actualDelay) //
.overridingErrorMessage("Expected start delay <%s> but was <%s>.", delay, actualDelay) //
.isEqualTo(delay);
return myself;
}
@TargetApi(KITKAT)
public S isPaused() {
isNotNull();
assertThat(actual.isPaused()) //
.overridingErrorMessage("Expected to be paused but was not.") //
.isTrue();
return myself;
}
@TargetApi(KITKAT)
public S isNotPaused() {
isNotNull();
assertThat(actual.isPaused()) //
.overridingErrorMessage("Expected to not be paused but was.") //
.isFalse();
return myself;
}
public S isRunning() {
isNotNull();
assertThat(actual.isRunning()) //
.overridingErrorMessage("Expected to be running but was not.") //
.isTrue();
return myself;
}
public S isNotRunning() {
isNotNull();
assertThat(actual.isRunning()) //
.overridingErrorMessage("Expected to not be running but was.") //
.isFalse();
return myself;
}
@TargetApi(ICE_CREAM_SANDWICH)
public S isStarted() {
isNotNull();
assertThat(actual.isStarted()) //
.overridingErrorMessage("Expected to be started but was not.") //
.isTrue();
return myself;
}
@TargetApi(ICE_CREAM_SANDWICH)
public S isNotStarted() {
isNotNull();
assertThat(actual.isStarted()) //
.overridingErrorMessage("Expected to not be started but was.") //
.isFalse();
return myself;
}
}