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

Unified Diff: test/utils.dart

Issue 1685363002: Add a platform plugin infrastructure. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/runner/load_suite_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/utils.dart
diff --git a/test/utils.dart b/test/utils.dart
index d7595866645ad7068c1212a630b1fcf1fff176dd..03d457d8ef73b1d69f29b616bdf6fdad34c796ba 100644
--- a/test/utils.dart
+++ b/test/utils.dart
@@ -16,8 +16,8 @@ import 'package:test/src/backend/suite.dart';
import 'package:test/src/runner/application_exception.dart';
import 'package:test/src/runner/engine.dart';
import 'package:test/src/runner/load_exception.dart';
+import 'package:test/src/runner/plugin/environment.dart';
import 'package:test/src/runner/runner_suite.dart';
-import 'package:test/src/runner/vm/environment.dart';
import 'package:test/src/util/remote_exception.dart';
import 'package:test/test.dart';
@@ -308,6 +308,6 @@ List<GroupEntry> declare(void body()) {
Engine declareEngine(void body()) {
var declarer = new Declarer()..declare(body);
return new Engine.withSuites([
- new RunnerSuite(const VMEnvironment(), declarer.build())
+ new RunnerSuite(const PluginEnvironment(), declarer.build())
]);
}
« no previous file with comments | « test/runner/load_suite_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698