Home
last modified time | relevance | path

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

/aosp_15_r20/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DOffloadControllerTest.java127 private final ArgumentCaptor<ArrayList> mStringArrayCaptor = field in OffloadControllerTest
272 inOrder.verify(mHardware, times(1)).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
273 ArrayList<String> localPrefixes = mStringArrayCaptor.getValue(); in testSetUpstreamLinkPropertiesWorking()
281 inOrder.verify(mHardware, never()).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
294 inOrder.verify(mHardware, never()).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
311 inOrder.verify(mHardware, never()).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
322 inOrder.verify(mHardware, never()).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
333 inOrder.verify(mHardware, never()).setLocalPrefixes(mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
335 eq(testIfName), eq(ipv4Addr), eq(ipv4Gateway), mStringArrayCaptor.capture()); in testSetUpstreamLinkPropertiesWorking()
337 ArrayList<String> v6gws = mStringArrayCaptor.getValue(); in testSetUpstreamLinkPropertiesWorking()
[all …]
DBpfCoordinatorTest.java471 private final ArgumentCaptor<ArrayList> mStringArrayCaptor = field in BpfCoordinatorTest