| 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 test.backend.test; | 5 library test.backend.test; |
| 6 | 6 |
| 7 import 'live_test.dart'; | 7 import 'live_test.dart'; |
| 8 import 'metadata.dart'; | 8 import 'metadata.dart'; |
| 9 import 'operating_system.dart'; | 9 import 'operating_system.dart'; |
| 10 import 'suite.dart'; | 10 import 'suite.dart'; |
| 11 import 'suite_entry.dart'; | 11 import 'group_entry.dart'; |
| 12 import 'test_platform.dart'; | 12 import 'test_platform.dart'; |
| 13 | 13 |
| 14 /// A single test. | 14 /// A single test. |
| 15 /// | 15 /// |
| 16 /// A test is immutable and stateless, which means that it can't be run | 16 /// A test is immutable and stateless, which means that it can't be run |
| 17 /// directly. To run one, load a live version using [Test.load] and run it using | 17 /// directly. To run one, load a live version using [Test.load] and run it using |
| 18 /// [LiveTest.run]. | 18 /// [LiveTest.run]. |
| 19 abstract class Test implements SuiteEntry { | 19 abstract class Test implements GroupEntry { |
| 20 String get name; | 20 String get name; |
| 21 | 21 |
| 22 Metadata get metadata; | 22 Metadata get metadata; |
| 23 | 23 |
| 24 /// Loads a live version of this test, which can be used to run it a single | 24 /// Loads a live version of this test, which can be used to run it a single |
| 25 /// time. | 25 /// time. |
| 26 /// | 26 /// |
| 27 /// [suite] is the suite within which this test is being run. | 27 /// [suite] is the suite within which this test is being run. |
| 28 LiveTest load(Suite suite); | 28 LiveTest load(Suite suite); |
| 29 | 29 |
| 30 Test forPlatform(TestPlatform platform, {OperatingSystem os}); | 30 Test forPlatform(TestPlatform platform, {OperatingSystem os}); |
| 31 | 31 |
| 32 Test filter(bool callback(Test test)) => callback(this) ? this : null; | 32 Test filter(bool callback(Test test)) => callback(this) ? this : null; |
| 33 } | 33 } |
| OLD | NEW |