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.java122 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withSim_shouldShowMobileAndWifi()
127 verify(dataUsageSummary).addMobileSection(anyInt()); in configuration_withSim_shouldShowMobileAndWifi()
143 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withoutSim_shouldShowWifiSectionOnly()
148 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_withoutSim_shouldShowWifiSectionOnly()
164 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_withoutMobile_shouldShowWifiSectionOnly()
169 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_withoutMobile_shouldShowWifiSectionOnly()
188 doNothing().when(dataUsageSummary).addMobileSection(1); in configuration_invalidDataSusbscription_shouldShowWifiSectionOnly()
193 verify(dataUsageSummary, never()).addMobileSection(anyInt()); in configuration_invalidDataSusbscription_shouldShowWifiSectionOnly()
/packages/apps/Settings/src/com/android/settings/datausage/
DDataUsageSummary.java99 addMobileSection(defaultSubId); in onCreate()
149 void addMobileSection(int subId) { in addMobileSection() method in DataUsageSummary
150 addMobileSection(subId, null); in addMobileSection()
168 private void addMobileSection(int subId, SubscriptionInfo subInfo) { in addMobileSection() method in DataUsageSummary