summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/util
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2018-12-07 07:14:01 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-12-07 07:14:01 +0000
commitdab230f63ccf3fa184e14ffa3d10a647097d8478 (patch)
tree2c04217832402a409d5f647be1fda7e9d4d32f30 /src/com/android/launcher3/util
parentaffe2bc2612da5056a5c916bcbc90be82ce97564 (diff)
parent0d4ac5712809632aed4ac9b67414444227ea0f45 (diff)
downloadandroid_packages_apps_Trebuchet-dab230f63ccf3fa184e14ffa3d10a647097d8478.tar.gz
android_packages_apps_Trebuchet-dab230f63ccf3fa184e14ffa3d10a647097d8478.tar.bz2
android_packages_apps_Trebuchet-dab230f63ccf3fa184e14ffa3d10a647097d8478.zip
Merge "Add framework for reliably reproducing race conditions." into ub-launcher3-master
Diffstat (limited to 'src/com/android/launcher3/util')
-rw-r--r--src/com/android/launcher3/util/RaceConditionTracker.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/com/android/launcher3/util/RaceConditionTracker.java b/src/com/android/launcher3/util/RaceConditionTracker.java
new file mode 100644
index 000000000..8eafb551d
--- /dev/null
+++ b/src/com/android/launcher3/util/RaceConditionTracker.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.launcher3.util;
+
+/**
+ * Event tracker for reliably reproducing race conditions in tests.
+ * The app should call onEvent() for events that the test will try to reproduce in all possible
+ * orders.
+ */
+public class RaceConditionTracker {
+ public interface EventProcessor {
+ void onEvent(String eventName);
+ }
+
+ private static EventProcessor sEventProcessor;
+
+ static void setEventProcessor(EventProcessor eventProcessor) {
+ sEventProcessor = eventProcessor;
+ }
+
+ public static void onEvent(String eventName) {
+ if (sEventProcessor != null) sEventProcessor.onEvent(eventName);
+ }
+}