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.test; | |
6 | |
7 import 'live_test.dart'; | |
8 import 'suite.dart'; | |
9 | |
10 /// A single test. | |
11 /// | |
12 /// A test is immutable and stateless, which means that it can't be run | |
13 /// directly. To run one, load a live version using [Test.load] and run it using | |
14 /// [LiveTest.run]. | |
15 abstract class Test { | |
16 /// The name of the test. | |
17 String get name; | |
18 | |
19 /// Loads a live version of this test, which can be used to run it a single | |
20 /// time. | |
21 /// | |
22 /// [suite] is the suite within which this test is being run. | |
23 LiveTest load(Suite suite); | |
24 } | |
OLD | NEW |