| Index: lib/src/frontend/tags.dart
|
| diff --git a/lib/src/frontend/tags.dart b/lib/src/frontend/tags.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ad1e8b7409c476e6a244cb285909b0743815c1e0
|
| --- /dev/null
|
| +++ b/lib/src/frontend/tags.dart
|
| @@ -0,0 +1,17 @@
|
| +// 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.
|
| +
|
| +library test.frontend.tags;
|
| +
|
| +/// An annotation for applying a set of tags for a test suite.
|
| +class Tags {
|
| + /// Tags applied to a test suite.
|
| + final tags;
|
| +
|
| + /// Applies a set of tags to a test suite.
|
| + ///
|
| + /// [tags] is either an [Iterable] specifying one or more tags, or a [String]
|
| + /// specifying one tag.
|
| + const Tags([this.tags]);
|
| +}
|
|
|