All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.android.api.graphics.PointFAssert Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy