org.assertj.android.api.graphics.drawable.GradientDrawableAssert 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.graphics.drawable;
import android.annotation.TargetApi;
import android.graphics.drawable.GradientDrawable;
import static android.os.Build.VERSION_CODES.JELLY_BEAN;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link android.graphics.drawable.GradientDrawable} instances. */
public class GradientDrawableAssert
extends AbstractDrawableAssert {
public GradientDrawableAssert(GradientDrawable actual) {
super(actual, GradientDrawableAssert.class);
}
@TargetApi(JELLY_BEAN)
public GradientDrawableAssert hasOrientation(GradientDrawable.Orientation orientation) {
isNotNull();
GradientDrawable.Orientation actualOrientation = actual.getOrientation();
assertThat(actualOrientation) //
.overridingErrorMessage("Expected orientation <%s> but was <%s>.", orientation,
actualOrientation) //
.isEqualTo(orientation);
return this;
}
}