Home
last modified time | relevance | path

Searched refs:addMobileSection (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/datausage/
DDataUsageSummaryTest.java118 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withSim_shouldShowMobileAndWifi()
123 verify(dataUsageSummary).addMobileSection(anyInt()); in configuration_withSim_shouldShowMobileAndWifi()
138 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withoutSim_shouldShowWifiSectionOnly()
143 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_withoutSim_shouldShowWifiSectionOnly()
158 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withoutMobile_shouldShowWifiSectionOnly()
163 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_withoutMobile_shouldShowWifiSectionOnly()
181 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_invalidDataSusbscription_shouldShowWifiSectionOnly()
186 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_invalidDataSusbscription_shouldShowWifiSectionOnly()
/packages/apps/Settings/src/com/android/settings/datausage/
DDataUsageSummary.java104 addMobileSection(defaultSubId); in onCreate()
147 void addMobileSection(int subId) { in addMobileSection() method in DataUsageSummary
148 addMobileSection(subId, null); in addMobileSection()
166 private void addMobileSection(int subId, SubscriptionInfo subInfo) { in addMobileSection() method in DataUsageSummary