Searched refs:mNapCaptor (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Connectivity/tests/unit/java/android/net/ |
D | IpMemoryStoreTest.java | 85 ArgumentCaptor<NetworkAttributesParcelable> mNapCaptor; field in IpMemoryStoreTest 126 mNapCaptor.capture(), any()); in testNetworkAttributes() 127 assertEquals(TEST_NETWORK_ATTRIBUTES, new NetworkAttributes(mNapCaptor.getValue())); in testNetworkAttributes() 178 verify(mMockService, times(1)).findL2Key(mNapCaptor.capture(), any()); in testFindL2Key() 179 assertEquals(TEST_NETWORK_ATTRIBUTES, new NetworkAttributes(mNapCaptor.getValue())); in testFindL2Key() 234 inOrder.verify(mMockService).storeNetworkAttributes(eq(l2Key), mNapCaptor.capture(), any()); in testEnqueuedIpMsRequests() 240 assertEquals(TEST_NETWORK_ATTRIBUTES, new NetworkAttributes(mNapCaptor.getValue())); in testEnqueuedIpMsRequests() 279 inOrder.verify(mMockService).storeNetworkAttributes(eq(l2Key), mNapCaptor.capture(), any()); in testEnqueuedIpMsRequestsWithException() 284 assertEquals(TEST_NETWORK_ATTRIBUTES, new NetworkAttributes(mNapCaptor.getValue())); in testEnqueuedIpMsRequestsWithException() 320 inOrder.verify(mMockService).storeNetworkAttributes(eq(l2Key), mNapCaptor.capture(), in testEnqueuedIpMsRequestsCallbackFunctionWithException() [all …]
|