org.assertj.android.api.telephony.CellSignalStrengthWcdmaAssert 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.telephony;
import android.annotation.TargetApi;
import android.telephony.CellSignalStrengthWcdma;
import static android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
@TargetApi(JELLY_BEAN_MR2)
public class CellSignalStrengthWcdmaAssert extends AbstractCellSignalStrengthAssert {
public CellSignalStrengthWcdmaAssert(CellSignalStrengthWcdma actual) {
super(actual, CellSignalStrengthWcdmaAssert.class);
}
}