blob: 0c57f674d04727528a034dc014a9341616485cff [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// An annotation for marking a test to be retried.
///
/// A test with retries enabled will be re-run if it fails for a reason
/// other than [TestFailure].
class Retry {
/// The number of times the test will be retried.
final int count;
/// Marks a test to be retried.
const Retry(this.count);
}