blob: 787b22412e384e0818864091fdbdfeac54f29bc8 [file] [log] [blame]
// Copyright (c) 2015, 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 suite as skipped.
class Skip {
/// The reason the test suite is skipped, or `null` if no reason is given.
final String reason;
/// Marks a suite as skipped.
///
/// If [reason] is passed, it's included in the test output as the reason the
/// test is skipped.
const Skip([this.reason]);
}