org.fest.assertions.api.android.view.AbstractInputEventAssert 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.
package org.fest.assertions.api.android.view;
import android.view.InputEvent;
import org.fest.assertions.api.AbstractAssert;
import static org.fest.assertions.api.Assertions.assertThat;
public abstract class AbstractInputEventAssert, A extends InputEvent>
extends AbstractAssert {
protected AbstractInputEventAssert(A actual, Class selfType) {
super(actual, selfType);
}
public S hasDeviceId(int id) {
isNotNull();
int actualId = actual.getDeviceId();
assertThat(actualId) //
.overridingErrorMessage("Expected device ID <%s> but was <%s>", id, actualId) //
.isEqualTo(id);
return myself;
}
public S hasEventTime(long time) {
isNotNull();
long actualTime = actual.getEventTime();
assertThat(actualTime) //
.overridingErrorMessage("Expected time <%s> but was <%s>", time, actualTime) //
.isEqualTo(time);
return myself;
}
public S hasSource(int source) {
isNotNull();
int actualSource = actual.getSource();
assertThat(actualSource) //
.overridingErrorMessage("Expected source <%s> but was <%s>", source, actualSource) //
.isEqualTo(source);
return myself;
}
}