Searched refs:mStringArrayCaptor (Results 1 – 2 of 2) sorted by relevance
127 private final ArgumentCaptor<ArrayList> mStringArrayCaptor = field in OffloadControllerTest272 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 …]
471 private final ArgumentCaptor<ArrayList> mStringArrayCaptor = field in BpfCoordinatorTest