Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTelecomManagerTest.java26 private TelecomManager telecomService; field in ShadowTelecomManagerTest
30 telecomService = in setUp()
39 shadowOf(telecomService).setSimCallManager(handle); in getSimCallManager()
41 assertThat(telecomService.getConnectionManager().getId()).isEqualTo("id"); in getSimCallManager()
46 assertThat(shadowOf(telecomService).getAllPhoneAccountsCount()).isEqualTo(0); in registerAndUnRegister()
47 assertThat(shadowOf(telecomService).getAllPhoneAccounts()).hasSize(0); in registerAndUnRegister()
51 telecomService.registerPhoneAccount(phoneAccount); in registerAndUnRegister()
53 assertThat(shadowOf(telecomService).getAllPhoneAccountsCount()).isEqualTo(1); in registerAndUnRegister()
54 assertThat(shadowOf(telecomService).getAllPhoneAccounts()).hasSize(1); in registerAndUnRegister()
55 assertThat(telecomService.getAllPhoneAccountHandles()).hasSize(1); in registerAndUnRegister()
[all …]