org.assertj.android.api.widget.AbstractHorizontalScrollViewAssert 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.
// Copyright 2013 Square, Inc.
package org.assertj.android.api.widget;
import android.widget.HorizontalScrollView;
import static org.assertj.core.api.Assertions.assertThat;
public abstract class AbstractHorizontalScrollViewAssert, A extends HorizontalScrollView>
extends AbstractFrameLayoutAssert {
protected AbstractHorizontalScrollViewAssert(A actual, Class selfType) {
super(actual, selfType);
}
public S hasMaximumScrollAmount(int amount) {
isNotNull();
int actualAmount = actual.getMaxScrollAmount();
assertThat(actualAmount) //
.overridingErrorMessage("Expected maximum scroll amount <%s> but was <%s>.", amount,
actualAmount) //
.isEqualTo(amount);
return myself;
}
public S isFillingViewport() {
isNotNull();
assertThat(actual.isFillViewport()) //
.overridingErrorMessage("Expected to be filling viewport but was not.") //
.isTrue();
return myself;
}
public S isNotFillingViewport() {
isNotNull();
assertThat(actual.isFillViewport()) //
.overridingErrorMessage("Expected to not be filling viewport but was.") //
.isFalse();
return myself;
}
public S isSmoothScrollingEnabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scrolling to be enabled but was disabled.") //
.isTrue();
return myself;
}
public S isSmoothScrollingDisabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scrolling to be disabled but was enabled.") //
.isFalse();
return myself;
}
}