Searched refs:receivedUpdates2 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/ |
D | DeviceConfigApiTests.java | 1127 final List<PropertyUpdate> receivedUpdates2 = new ArrayList<>(); in testTwoPropertiesListenersSameNamespace() local 1130 OnPropertiesChangedListener listener2 = createOnPropertiesChangedListener(receivedUpdates2); in testTwoPropertiesListenersSameNamespace() 1137 waitForListenerUpdateOrTimeout(receivedUpdates2, /*expectedTotalUpdatesCount=*/0); in testTwoPropertiesListenersSameNamespace() 1142 receivedUpdates2.size(), /*expectedTotalUpdatesCount=*/0); in testTwoPropertiesListenersSameNamespace() 1149 waitForListenerUpdateOrTimeout(receivedUpdates2, /*expectedTotalUpdatesCount=*/1); in testTwoPropertiesListenersSameNamespace() 1154 receivedUpdates2.size(), 1); in testTwoPropertiesListenersSameNamespace() 1156 receivedUpdates2.get(0).assertEqual(NAMESPACE1, KEY1, VALUE2); in testTwoPropertiesListenersSameNamespace() 1161 waitForListenerUpdateOrTimeout(receivedUpdates2, /*expectedTotalUpdatesCount=*/2); in testTwoPropertiesListenersSameNamespace() 1167 receivedUpdates2.size(), 2); in testTwoPropertiesListenersSameNamespace() 1169 receivedUpdates2.get(1).assertEqual(NAMESPACE1, KEY1, VALUE1); in testTwoPropertiesListenersSameNamespace() [all …]
|