org.assertj.android.api.preference.CheckBoxPreferenceAssert 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.preference;
import android.preference.CheckBoxPreference;
/** Assertions for {@link CheckBoxPreference} instances. */
public class CheckBoxPreferenceAssert
extends AbstractTwoStatePreference {
/* Since TwoStatePreference is ICS+ this class allows CheckBoxPreference asserts on pre-ICS. */
public CheckBoxPreferenceAssert(CheckBoxPreference actual) {
super(actual, CheckBoxPreferenceAssert.class);
}
}