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

Unified Diff: lib/src/runner/loader.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, 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 | « lib/src/runner/load_exception.dart ('k') | lib/src/runner/vm_listener.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/loader.dart
diff --git a/lib/src/loader.dart b/lib/src/runner/loader.dart
similarity index 94%
rename from lib/src/loader.dart
rename to lib/src/runner/loader.dart
index e7aaf4d4cad5de2d4121fe40b7dbe5a2371b6611..65e0bcf0295d8d31527e3061c74360a91a5551c1 100644
--- a/lib/src/loader.dart
+++ b/lib/src/runner/loader.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library unittest.loader;
+library unittest.runner.loader;
import 'dart:async';
import 'dart:io';
@@ -10,12 +10,12 @@ import 'dart:isolate';
import 'package:path/path.dart' as p;
-import 'dart.dart';
-import 'io.dart';
+import '../backend/suite.dart';
+import '../util/dart.dart';
+import '../util/io.dart';
+import '../util/remote_exception.dart';
import 'isolate_test.dart';
import 'load_exception.dart';
-import 'remote_exception.dart';
-import 'suite.dart';
/// A class for finding test files and loading them into a runnable form.
class Loader {
@@ -65,7 +65,7 @@ class Loader {
var receivePort = new ReceivePort();
return runInIsolate('''
-import "package:unittest/src/vm_listener.dart";
+import "package:unittest/src/runner/vm_listener.dart";
import "${p.toUri(p.absolute(path))}" as test;
« no previous file with comments | « lib/src/runner/load_exception.dart ('k') | lib/src/runner/vm_listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698