org.fest.assertions.api.android.graphics.MatrixAssert 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.Matrix;
import org.fest.assertions.api.AbstractAssert;
import static org.fest.assertions.api.Assertions.assertThat;
/** Assertions for {@link Matrix} instances. */
public class MatrixAssert extends AbstractAssert {
public MatrixAssert(Matrix actual) {
super(actual, MatrixAssert.class);
}
public MatrixAssert isIdentity() {
isNotNull();
assertThat(actual.isIdentity()) //
.overridingErrorMessage("Expected to be identity matrix but was not.") //
.isTrue();
return this;
}
public MatrixAssert isNotIdentity() {
isNotNull();
assertThat(actual.isIdentity()) //
.overridingErrorMessage("Expected to not be identity matrix but was.") //
.isTrue();
return this;
}
}