Searched refs:storeData2 (Results 1 – 1 of 1) sorted by relevance
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | WifiConfigStoreTest.java | 607 StoreData storeData2 = mock(StoreData.class); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() local 610 assertTrue(mWifiConfigStore.registerStoreData(storeData2)); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 622 when(storeData2.getName()).thenReturn(storeData2Name); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 625 when(storeData2.getStoreFileId()) in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 633 verify(storeData2).deserializeData(eq(null), anyInt(), anyInt(), any()); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 634 reset(storeData1, storeData2); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 638 when(storeData2.getName()).thenReturn(storeData2Name); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 641 when(storeData2.getStoreFileId()) in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 648 verify(storeData2).deserializeData(notNull(), anyInt(), anyInt(), any()); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() 649 verify(storeData2, never()).deserializeData(eq(null), anyInt(), anyInt(), any()); in testReadWifiConfigStoreDataIndicateClientsThatThereIsNoDataForThem() [all …]
|