org.assertj.android.api.view.AbstractViewGroupLayoutParamsAssert 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!
package org.assertj.android.api.view;
import android.view.ViewGroup;
import org.assertj.core.api.AbstractAssert;
import static org.assertj.core.api.Assertions.assertThat;
public abstract class AbstractViewGroupLayoutParamsAssert, A extends ViewGroup.LayoutParams>
extends AbstractAssert {
protected AbstractViewGroupLayoutParamsAssert(A actual, Class selfType) {
super(actual, selfType);
}
public S hasHeight(int height) {
isNotNull();
int actualHeight = actual.height;
assertThat(actualHeight) //
.overridingErrorMessage("Expected height <%s> but was <%s>", height, actualHeight) //
.isEqualTo(height);
return myself;
}
public S hasWidth(int width) {
isNotNull();
int actualWidth = actual.width;
assertThat(actualWidth) //
.overridingErrorMessage("Expected width <%s> but was <%s>", width, actualWidth) //
.isEqualTo(width);
return myself;
}
}