blob: 7017e88765f39a97a64ab95cc939af1c7da0e471 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package androidx.test.espresso.flutter.internal.protocol.impl;
import static com.google.common.base.Preconditions.checkNotNull;
/** The base class that represents a wait condition in the Flutter app. */
abstract class WaitCondition {
// Used in JSON serialization.
@SuppressWarnings("unused")
private final String conditionName;
public WaitCondition(String conditionName) {
this.conditionName = checkNotNull(conditionName);
}
}