| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 part of unittest; | 5 part of unittest; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Describes the interface used by the unit test system for communicating the | 8 * Describes the interface used by the unit test system for communicating the |
| 9 * results of a test run. | 9 * results of a test run. |
| 10 */ | 10 */ |
| 11 abstract class Configuration { | 11 abstract class Configuration { |
| 12 | 12 |
| 13 /** | 13 /** |
| 14 * Creates an instance of [SimpleConfiguration]. | 14 * Creates an instance of [SimpleConfiguration]. |
| 15 */ | 15 */ |
| 16 factory Configuration() => new SimpleConfiguration(); | 16 factory Configuration() => new SimpleConfiguration(); |
| 17 | 17 |
| 18 /** | 18 /** |
| 19 * Creates an [Configuration] instances that does nothing. | 19 * Creates an [Configuration] instances that does nothing. |
| 20 * | 20 * |
| 21 * For use by subclasses which wish to implement only a subset of features. | 21 * For use by subclasses which wish to implement only a subset of features. |
| 22 */ | 22 */ |
| 23 Configuration.blank(); | 23 Configuration.blank(); |
| 24 | 24 |
| 25 /** | 25 /** |
| 26 * If [true], tests are started automatically. Otherwise [runTests] | 26 * If [:true:], tests are started automatically. Otherwise [runTests] |
| 27 * must be called explicitly after tests are set up. | 27 * must be called explicitly after tests are set up. |
| 28 */ | 28 */ |
| 29 bool get autoStart => true; | 29 bool get autoStart => true; |
| 30 | 30 |
| 31 /// How long a [TestCase] can run before it is considered an error. | 31 /// How long a [TestCase] can run before it is considered an error. |
| 32 /// A [timeout] value of [:null:] means that the limit is infinite. | 32 /// A [timeout] value of [:null:] means that the limit is infinite. |
| 33 Duration timeout = const Duration(minutes: 2); | 33 Duration timeout = const Duration(minutes: 2); |
| 34 | 34 |
| 35 /** | 35 /** |
| 36 * Called as soon as the unittest framework becomes initialized. This is done | 36 * Called as soon as the unittest framework becomes initialized. This is done |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 * Called with the result of all test cases. Browser tests commonly override | 78 * Called with the result of all test cases. Browser tests commonly override |
| 79 * this to reformat the output. | 79 * this to reformat the output. |
| 80 * | 80 * |
| 81 * When [uncaughtError] is not null, it contains an error that occured outside | 81 * When [uncaughtError] is not null, it contains an error that occured outside |
| 82 * of tests (e.g. setting up the test). | 82 * of tests (e.g. setting up the test). |
| 83 */ | 83 */ |
| 84 void onSummary(int passed, int failed, int errors, List<TestCase> results, | 84 void onSummary(int passed, int failed, int errors, List<TestCase> results, |
| 85 String uncaughtError) {} | 85 String uncaughtError) {} |
| 86 } | 86 } |
| 87 | 87 |
| OLD | NEW |