org.assertj.android.api.app.DialogFragmentAssert 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!
package org.assertj.android.api.app;
import android.annotation.TargetApi;
import android.app.DialogFragment;
import static android.os.Build.VERSION_CODES.HONEYCOMB;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link DialogFragment} instances. */
@TargetApi(HONEYCOMB)
public class DialogFragmentAssert
extends AbstractFragmentAssert {
public DialogFragmentAssert(DialogFragment actual) {
super(actual, DialogFragmentAssert.class);
}
public DialogFragmentAssert isCancelable() {
isNotNull();
assertThat(actual.isCancelable()) //
.overridingErrorMessage("Expected to be cancelable but was not cancelable.") //
.isTrue();
return this;
}
public DialogFragmentAssert isNotCancelable() {
isNotNull();
assertThat(actual.isCancelable()) //
.overridingErrorMessage("Expected to be not cancelable but was cancelable.") //
.isFalse();
return this;
}
}