All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.android.api.animation.AnimatorAssert Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
// Copyright 2013 Square, Inc.
package org.assertj.android.api.animation;

import android.animation.Animator;
import android.annotation.TargetApi;

import static android.os.Build.VERSION_CODES.HONEYCOMB;

/**
 * Assertions for {@link Animator} instances.
 * 

* This class is final. To extend use {@link AbstractAnimatorAssert}. */ @TargetApi(HONEYCOMB) public final class AnimatorAssert extends AbstractAnimatorAssert { public AnimatorAssert(Animator actual) { super(actual, AnimatorAssert.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy