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