Searched refs:fakeApexInfos (Results 1 – 1 of 1) sorted by relevance
519 ApexInfo[] fakeApexInfos = getFakeApexInfo(Arrays.asList("module1")); in getStagedApexInfos_nonParentSession() local520 when(mApexManager.getStagedApexInfos(any())).thenReturn(fakeApexInfos); in getStagedApexInfos_nonParentSession()524 assertThat(result).containsExactly(fakeApexInfos[0].moduleName, fakeApexInfos[0]); in getStagedApexInfos_nonParentSession()544 when(mApexManager.getStagedApexInfos(any())).thenReturn(fakeApexInfos); in getStagedApexInfos_parentSession()548 assertThat(result).containsExactly(fakeApexInfos[0].moduleName, fakeApexInfos[0], in getStagedApexInfos_parentSession()549 fakeApexInfos[1].moduleName, fakeApexInfos[1]); in getStagedApexInfos_parentSession()614 ApexInfo[] fakeApexInfos = getFakeApexInfo(Arrays.asList("module1")); in getStagedApexInfo() local615 when(mApexManager.getStagedApexInfos(any())).thenReturn(fakeApexInfos); in getStagedApexInfo()623 assertThat(result.moduleName).isEqualTo(fakeApexInfos[0].moduleName); in getStagedApexInfo()625 assertThat(result.versionCode).isEqualTo(fakeApexInfos[0].versionCode); in getStagedApexInfo()[all …]