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

Unified Diff: lib/src/runner.dart

Issue 1258163002: Split out a RunnerSuite class. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/backend/suite.dart ('k') | lib/src/runner/browser/browser_manager.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner.dart
diff --git a/lib/src/runner.dart b/lib/src/runner.dart
index c0c91f063f7b9f9e9cf151412183bc2449b27168..58c2a68f5c8609d49ccb29a0453b8dc5a64f97c1 100644
--- a/lib/src/runner.dart
+++ b/lib/src/runner.dart
@@ -8,7 +8,6 @@ import 'dart:async';
import 'dart:io';
import 'backend/metadata.dart';
-import 'backend/suite.dart';
import 'backend/test_platform.dart';
import 'runner/application_exception.dart';
import 'runner/configuration.dart';
@@ -19,6 +18,7 @@ import 'runner/loader.dart';
import 'runner/reporter.dart';
import 'runner/reporter/compact.dart';
import 'runner/reporter/expanded.dart';
+import 'runner/runner_suite.dart';
import 'util/async_thunk.dart';
import 'util/io.dart';
import 'utils.dart';
@@ -221,7 +221,7 @@ class Runner {
///
/// This is a no-op for test suites that aren't on platforms where debugging
/// is supported.
- Future _pause(Suite suite) async {
+ Future _pause(RunnerSuite suite) async {
if (suite.platform == null) return;
if (_debugUnsupportedPlatforms.contains(suite.platform)) return;
« no previous file with comments | « lib/src/backend/suite.dart ('k') | lib/src/runner/browser/browser_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698