Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(999)

Side by Side Diff: lib/src/backend/test.dart

Issue 1704183002: pkg/test: cleanup imports (Closed) Base URL: https://github.com/dart-lang/test.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/backend/suite.dart ('k') | lib/src/runner/configuration.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import 'group.dart'; 5 import 'group.dart';
6 import 'group_entry.dart';
6 import 'live_test.dart'; 7 import 'live_test.dart';
7 import 'metadata.dart'; 8 import 'metadata.dart';
8 import 'operating_system.dart'; 9 import 'operating_system.dart';
9 import 'suite.dart'; 10 import 'suite.dart';
10 import 'group_entry.dart';
11 import 'test_platform.dart'; 11 import 'test_platform.dart';
12 12
13 /// A single test. 13 /// A single test.
14 /// 14 ///
15 /// A test is immutable and stateless, which means that it can't be run 15 /// A test is immutable and stateless, which means that it can't be run
16 /// directly. To run one, load a live version using [Test.load] and run it using 16 /// directly. To run one, load a live version using [Test.load] and run it using
17 /// [LiveTest.run]. 17 /// [LiveTest.run].
18 abstract class Test implements GroupEntry { 18 abstract class Test implements GroupEntry {
19 String get name; 19 String get name;
20 20
21 Metadata get metadata; 21 Metadata get metadata;
22 22
23 /// Loads a live version of this test, which can be used to run it a single 23 /// Loads a live version of this test, which can be used to run it a single
24 /// time. 24 /// time.
25 /// 25 ///
26 /// [suite] is the suite within which this test is being run. If [groups] is 26 /// [suite] is the suite within which this test is being run. If [groups] is
27 /// passed, it's the list of groups containing this test; otherwise, it 27 /// passed, it's the list of groups containing this test; otherwise, it
28 /// defaults to just containing `suite.group`. 28 /// defaults to just containing `suite.group`.
29 LiveTest load(Suite suite, {Iterable<Group> groups}); 29 LiveTest load(Suite suite, {Iterable<Group> groups});
30 30
31 Test forPlatform(TestPlatform platform, {OperatingSystem os}); 31 Test forPlatform(TestPlatform platform, {OperatingSystem os});
32 32
33 Test filter(bool callback(Test test)) => callback(this) ? this : null; 33 Test filter(bool callback(Test test)) => callback(this) ? this : null;
34 } 34 }
OLDNEW
« no previous file with comments | « lib/src/backend/suite.dart ('k') | lib/src/runner/configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698