OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library unittest.test; | 5 library unittest.backend.test; |
6 | 6 |
7 import 'live_test.dart'; | 7 import 'live_test.dart'; |
8 import 'suite.dart'; | 8 import 'suite.dart'; |
9 | 9 |
10 /// A single test. | 10 /// A single test. |
11 /// | 11 /// |
12 /// A test is immutable and stateless, which means that it can't be run | 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 | 13 /// directly. To run one, load a live version using [Test.load] and run it using |
14 /// [LiveTest.run]. | 14 /// [LiveTest.run]. |
15 abstract class Test { | 15 abstract class Test { |
16 /// The name of the test. | 16 /// The name of the test. |
17 String get name; | 17 String get name; |
18 | 18 |
19 /// Loads a live version of this test, which can be used to run it a single | 19 /// Loads a live version of this test, which can be used to run it a single |
20 /// time. | 20 /// time. |
21 /// | 21 /// |
22 /// [suite] is the suite within which this test is being run. | 22 /// [suite] is the suite within which this test is being run. |
23 LiveTest load(Suite suite); | 23 LiveTest load(Suite suite); |
24 } | 24 } |
OLD | NEW |