| Index: lib/src/runner/engine.dart
|
| diff --git a/lib/src/engine.dart b/lib/src/runner/engine.dart
|
| similarity index 94%
|
| rename from lib/src/engine.dart
|
| rename to lib/src/runner/engine.dart
|
| index 5e2b6508c3c450051fa12eb1a5e3fc27f20cb871..405f0dea68c5b2f22df0b2329b726e80581e4587 100644
|
| --- a/lib/src/engine.dart
|
| +++ b/lib/src/runner/engine.dart
|
| @@ -2,15 +2,15 @@
|
| // 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.engine;
|
| +library unittest.runner.engine;
|
|
|
| import 'dart:async';
|
| import 'dart:collection';
|
|
|
| -import 'live_test.dart';
|
| -import 'state.dart';
|
| -import 'suite.dart';
|
| -import 'utils.dart';
|
| +import '../backend/live_test.dart';
|
| +import '../backend/state.dart';
|
| +import '../backend/suite.dart';
|
| +import '../utils.dart';
|
|
|
| /// An [Engine] manages a run that encompasses multiple test suites.
|
| ///
|
|
|