org.fest.assertions.api.android.widget.TimePickerAssert 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.
// Copyright 2013 Square, Inc.
package org.fest.assertions.api.android.widget;
import android.widget.TimePicker;
import static org.fest.assertions.api.Assertions.assertThat;
public class TimePickerAssert extends AbstractFrameLayoutAssert {
public TimePickerAssert(TimePicker actual) {
super(actual, TimePickerAssert.class);
}
public TimePickerAssert hasCurrentHour(Integer hour) {
isNotNull();
Integer actualHour = actual.getCurrentHour();
assertThat(actualHour) //
.overridingErrorMessage("Expected current hour <%s> but was <%s>.", hour, actualHour) //
.isEqualTo(hour);
return this;
}
public TimePickerAssert hasCurrentMinute(Integer minute) {
isNotNull();
Integer actualMinute = actual.getCurrentMinute();
assertThat(actualMinute) //
.overridingErrorMessage("Expected current minute <%s> but was <%s>.", minute,
actualMinute) //
.isEqualTo(minute);
return this;
}
public TimePickerAssert isIn24HourView() {
isNotNull();
assertThat(actual.is24HourView()) //
.overridingErrorMessage("Expected to be in 24 hour view but was not.") //
.isTrue();
return this;
}
public TimePickerAssert isNotIn24HourView() {
isNotNull();
assertThat(actual.is24HourView()) //
.overridingErrorMessage("Expected to not be in 24 hour view but was.") //
.isFalse();
return this;
}
}