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