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

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

Issue 955543002: Move a bunch of src/ files into subdirectories. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Fix library tags Created 5 years, 9 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/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 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 }
OLDNEW
« no previous file with comments | « lib/src/backend/suite.dart ('k') | lib/src/configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698