org.assertj.android.api.widget.TimePickerAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-android Show documentation
Show all versions of assertj-android Show documentation
A set of AssertJ assertion helpers geared toward testing Android.
The newest version!
// Copyright 2013 Square, Inc.
package org.assertj.android.api.widget;
import android.annotation.TargetApi;
import android.support.annotation.IntRange;
import android.widget.TimePicker;
import static android.os.Build.VERSION_CODES.M;
import static org.assertj.core.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;
}
@TargetApi(M)
public TimePickerAssert hasHour(@IntRange(from = 0, to = 23) int hour) {
isNotNull();
int actualHour = actual.getHour();
assertThat(actualHour) //
.overridingErrorMessage("Expected hour <%s> but was <%s>.", hour,
actualHour) //
.isEqualTo(hour);
return this;
}
@TargetApi(M)
public TimePickerAssert hasMinute(@IntRange(from = 0, to = 59) int minute) {
isNotNull();
int actualMinute = actual.getMinute();
assertThat(actualMinute)
.overridingErrorMessage("Expected 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;
}
}