org.assertj.android.api.graphics.PointFAssert 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!
// Copyright 2013 Square, Inc.
package org.assertj.android.api.graphics;
import android.graphics.PointF;
import org.assertj.core.api.AbstractAssert;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link PointF} instances. */
public class PointFAssert extends AbstractAssert {
public PointFAssert(PointF actual) {
super(actual, PointFAssert.class);
}
public PointFAssert hasX(float x) {
isNotNull();
float actualX = actual.x;
assertThat(actualX) //
.overridingErrorMessage("Expected X <%s> but was <%s>.", x, actualX) //
.isEqualTo(x);
return this;
}
public PointFAssert hasY(float y) {
isNotNull();
float actualY = actual.y;
assertThat(actualY) //
.overridingErrorMessage("Expected Y <%s> but was <%s>.", y, actualY) //
.isEqualTo(y);
return this;
}
public PointFAssert hasLength(float length) {
isNotNull();
float actualLength = actual.length();
assertThat(actualLength) //
.overridingErrorMessage("Expected length <%s> but was <%s>.", length, actualLength) //
.isEqualTo(length);
return this;
}
}