org.fest.assertions.api.android.widget.HorizontalScrollViewAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fest-android Show documentation
Show all versions of fest-android Show documentation
A set of FEST assertion helpers geared toward testing Android.
// Copyright 2013 Square, Inc.
package org.fest.assertions.api.android.widget;
import android.widget.HorizontalScrollView;
import static org.fest.assertions.api.Assertions.assertThat;
/** Assertions for {@link HorizontalScrollView} instances. */
public class HorizontalScrollViewAssert
extends AbstractFrameLayoutAssert {
public HorizontalScrollViewAssert(HorizontalScrollView actual) {
super(actual, HorizontalScrollViewAssert.class);
}
public HorizontalScrollViewAssert hasMaximumScrollAmount(int amount) {
isNotNull();
int actualAmount = actual.getMaxScrollAmount();
assertThat(actualAmount) //
.overridingErrorMessage("Expected maximum scroll amount <%s> but was <%s>.", amount,
actualAmount) //
.isEqualTo(amount);
return this;
}
public HorizontalScrollViewAssert isFillingViewport() {
isNotNull();
assertThat(actual.isFillViewport()) //
.overridingErrorMessage("Expected to be filling viewport but was not.") //
.isTrue();
return this;
}
public HorizontalScrollViewAssert isNotFillingViewport() {
isNotNull();
assertThat(actual.isFillViewport()) //
.overridingErrorMessage("Expected to not be filling viewport but was.") //
.isFalse();
return this;
}
public HorizontalScrollViewAssert isSmoothScrollingEnabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scrolling to be enabled but was disabled.") //
.isTrue();
return this;
}
public HorizontalScrollViewAssert isSmoothScrollingDisabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scrolling to be disabled but was enabled.") //
.isFalse();
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy