Skip to content

Commit

Permalink
Add API 23 assertions to TimePickerAssert
Browse files Browse the repository at this point in the history
New assertions for `TimePicker#getHour()` and `TimePicker#getMinute()`.
  • Loading branch information
MariusVolkhart committed Apr 4, 2016
1 parent e2065c0 commit f0fb9bd
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
// 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<TimePickerAssert, TimePicker> {
Expand All @@ -29,6 +32,28 @@ public TimePickerAssert hasCurrentMinute(Integer 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()) //
Expand Down

0 comments on commit f0fb9bd

Please sign in to comment.