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

Side by Side Diff: mojo/public/dart/third_party/test/lib/src/backend/test.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library test.backend.test;
6
7 import 'live_test.dart';
8 import 'metadata.dart';
9 import 'suite.dart';
10
11 /// A single test.
12 ///
13 /// A test is immutable and stateless, which means that it can't be run
14 /// directly. To run one, load a live version using [Test.load] and run it using
15 /// [LiveTest.run].
16 abstract class Test {
17 /// The name of the test.
18 String get name;
19
20 /// The metadata for the test.
21 Metadata get metadata;
22
23 /// Loads a live version of this test, which can be used to run it a single
24 /// time.
25 ///
26 /// [suite] is the suite within which this test is being run.
27 LiveTest load(Suite suite);
28
29 /// Returns a new copy of this Test with the given [name] and [metadata], if
30 /// passed.
31 Test change({String name, Metadata metadata});
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698