org.fest.assertions.api.android.graphics.YuvImageAssert 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.graphics;
import android.graphics.YuvImage;
import org.fest.assertions.api.AbstractAssert;
import static org.fest.assertions.api.Assertions.assertThat;
/** Assertions for {@link YuvImage} instances. */
public class YuvImageAssert extends AbstractAssert {
public YuvImageAssert(YuvImage actual) {
super(actual, YuvImageAssert.class);
}
public YuvImageAssert hasHeight(int height) {
isNotNull();
int actualHeight = actual.getHeight();
assertThat(actualHeight) //
.overridingErrorMessage("Expected height <%s> but was <%s>.", height, actualHeight) //
.isEqualTo(height);
return this;
}
public YuvImageAssert hasWidth(int width) {
isNotNull();
int actualWidth = actual.getWidth();
assertThat(actualWidth) //
.overridingErrorMessage("Expected width <%s> but was <%s>.", width, actualWidth) //
.isEqualTo(width);
return this;
}
public YuvImageAssert hasYuvFormat(int format) {
isNotNull();
int actualFormat = actual.getYuvFormat();
assertThat(actualFormat) //
.overridingErrorMessage("Expected YUV format <%s> but was <%s>.", format, actualFormat) //
.isEqualTo(format);
return this;
}
}