OLD | NEW |
| (Empty) |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library unittest.suite; | |
6 | |
7 import 'dart:collection'; | |
8 | |
9 import 'test.dart'; | |
10 | |
11 /// A test suite. | |
12 /// | |
13 /// A test suite is a set of tests that are intended to be run together and that | |
14 /// share default configuration. | |
15 class Suite { | |
16 /// The name of the test suite. | |
17 final String name; | |
18 | |
19 /// The tests in the test suite. | |
20 final List<Test> tests; | |
21 | |
22 Suite(this.name, Iterable<Test> tests) | |
23 : tests = new UnmodifiableListView<Test>(tests.toList()); | |
24 } | |
OLD | NEW |