use of com.android.settings.fuelgauge.batterytip.tips.SmartBatteryTip in project android_packages_apps_Settings by omnirom.
the class BatteryHeaderPreferenceControllerTest method updateHeaderByBatteryTips_notLowBatteryTip_showRemainingLabel.
@Test
public void updateHeaderByBatteryTips_notLowBatteryTip_showRemainingLabel() {
setChargingState(/* isDischarging */
true, /* updatedByStatusFeature */
false);
BatteryTip lowBatteryTip = new SmartBatteryTip(BatteryTip.StateType.NEW);
mController.updateHeaderByBatteryTips(lowBatteryTip, mBatteryInfo);
verify(mBatteryUsageProgressBarPref).setBottomSummary(mBatteryInfo.remainingLabel);
}
Aggregations