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

org.assertj.android.api.gesture.GestureStoreAssert Maven / Gradle / Ivy

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

import android.gesture.GestureStore;
import org.assertj.core.api.AbstractAssert;

import static org.assertj.core.api.Assertions.assertThat;

/** Assertions for {@link GestureStore} instances. */
public class GestureStoreAssert extends AbstractAssert {
  public GestureStoreAssert(GestureStore actual) {
    super(actual, GestureStoreAssert.class);
  }

  public GestureStoreAssert hasOrientationStyle(int style) {
    isNotNull();
    int actualStyle = actual.getOrientationStyle();
    assertThat(actualStyle) //
        .overridingErrorMessage("Expected orientation style <%s> but was <%s>.", style,
            actualStyle) //
        .isEqualTo(style);
    return this;
  }

  public GestureStoreAssert hasSequenceType(int type) {
    isNotNull();
    int actualType = actual.getSequenceType();
    assertThat(actualType) //
        .overridingErrorMessage("Expected sequence type <%s> but was <%s>.", type, actualType) //
        .isEqualTo(type);
    return this;
  }

  public GestureStoreAssert hasChanged() {
    isNotNull();
    assertThat(actual.hasChanged()) //
        .overridingErrorMessage("Expected to be changed but was not.") //
        .isTrue();
    return this;
  }

  public GestureStoreAssert hasNotChanged() {
    isNotNull();
    assertThat(actual.hasChanged()) //
        .overridingErrorMessage("Expected to not be changed but was.") //
        .isFalse();
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy