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

Side by Side Diff: lib/src/backend/suite.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/state.dart ('k') | lib/src/backend/test.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.suite; 5 library unittest.backend.suite;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'test.dart'; 9 import 'test.dart';
10 10
11 /// A test suite. 11 /// A test suite.
12 /// 12 ///
13 /// A test suite is a set of tests that are intended to be run together and that 13 /// A test suite is a set of tests that are intended to be run together and that
14 /// share default configuration. 14 /// share default configuration.
15 class Suite { 15 class Suite {
16 /// The name of the test suite. 16 /// The name of the test suite.
17 final String name; 17 final String name;
18 18
19 /// The tests in the test suite. 19 /// The tests in the test suite.
20 final List<Test> tests; 20 final List<Test> tests;
21 21
22 Suite(this.name, Iterable<Test> tests) 22 Suite(this.name, Iterable<Test> tests)
23 : tests = new UnmodifiableListView<Test>(tests.toList()); 23 : tests = new UnmodifiableListView<Test>(tests.toList());
24 } 24 }
OLDNEW
« no previous file with comments | « lib/src/backend/state.dart ('k') | lib/src/backend/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698