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

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

The newest version!
// Copyright 2013 Square, Inc.
package org.assertj.android.api.graphics;

import android.annotation.TargetApi;
import android.graphics.BitmapRegionDecoder;
import org.assertj.core.api.AbstractAssert;

import static android.os.Build.VERSION_CODES.GINGERBREAD_MR1;
import static org.assertj.core.api.Assertions.assertThat;

/** Assertions for {@link BitmapRegionDecoder} instances. */
@TargetApi(GINGERBREAD_MR1)
public class BitmapRegionDecoderAssert
    extends AbstractAssert {
  public BitmapRegionDecoderAssert(BitmapRegionDecoder actual) {
    super(actual, BitmapRegionDecoderAssert.class);
  }

  public BitmapRegionDecoderAssert hasHeight(int height) {
    isNotNull();
    int actualHeight = actual.getHeight();
    assertThat(actualHeight) //
        .overridingErrorMessage("Expected height <%s> but was <%s>.", height, actualHeight) //
        .isEqualTo(height);
    return this;
  }

  public BitmapRegionDecoderAssert hasWidth(int width) {
    isNotNull();
    int actualHeight = actual.getWidth();
    assertThat(actualHeight) //
        .overridingErrorMessage("Expected width <%s> but was <%s>.", width, actualHeight) //
        .isEqualTo(width);
    return this;
  }

  public BitmapRegionDecoderAssert isRecycled() {
    isNotNull();
    assertThat(actual.isRecycled()) //
        .overridingErrorMessage("Expected to be recycled but was not recycled.") //
        .isTrue();
    return this;
  }

  public BitmapRegionDecoderAssert isNotRecycled() {
    isNotNull();
    assertThat(actual.isRecycled()) //
        .overridingErrorMessage("Expected to not be recycled but was recycled.") //
        .isFalse();
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy