| Index: lib/src/runner/vm_listener.dart
|
| diff --git a/lib/src/vm_listener.dart b/lib/src/runner/vm_listener.dart
|
| similarity index 94%
|
| rename from lib/src/vm_listener.dart
|
| rename to lib/src/runner/vm_listener.dart
|
| index 2a35f2219b95470dd3e858922c6eb260b939a175..f010c41f107a8f8c37dd53ba039a443d14b49716 100644
|
| --- a/lib/src/vm_listener.dart
|
| +++ b/lib/src/runner/vm_listener.dart
|
| @@ -2,16 +2,16 @@
|
| // 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.vm_listener;
|
| +library unittest.runner.vm_listener;
|
|
|
| import 'dart:isolate';
|
| import 'dart:async';
|
|
|
| -import 'declarer.dart';
|
| -import 'remote_exception.dart';
|
| -import 'suite.dart';
|
| -import 'test.dart';
|
| -import 'utils.dart';
|
| +import '../backend/declarer.dart';
|
| +import '../backend/suite.dart';
|
| +import '../backend/test.dart';
|
| +import '../util/remote_exception.dart';
|
| +import '../utils.dart';
|
|
|
| /// A class that runs tests in a separate isolate and communicates the results
|
| /// back to the main isolate.
|
|
|