| Index: pkg/analyzer/test/file_system/physical_resource_provider_test.dart
|
| diff --git a/pkg/analysis_server/test/physical_resource_provider_test.dart b/pkg/analyzer/test/file_system/physical_resource_provider_test.dart
|
| similarity index 98%
|
| rename from pkg/analysis_server/test/physical_resource_provider_test.dart
|
| rename to pkg/analyzer/test/file_system/physical_resource_provider_test.dart
|
| index eb63bf10c028b3c7cfbc9b1c28459d6a24326cee..462a6487afc3990377b1aebea8a02641d1e3bcd8 100644
|
| --- a/pkg/analysis_server/test/physical_resource_provider_test.dart
|
| +++ b/pkg/analyzer/test/file_system/physical_resource_provider_test.dart
|
| @@ -2,17 +2,23 @@
|
| // 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 test.physical.resource.provider;
|
| +library test.physical_file_system;
|
|
|
| import 'dart:async';
|
| import 'dart:io' as io;
|
|
|
| -import 'package:analysis_server/src/resource.dart';
|
| +import 'package:analyzer/file_system/file_system.dart';
|
| +import 'package:analyzer/file_system/physical_file_system.dart';
|
| import 'package:analyzer/src/generated/source_io.dart';
|
| import 'package:path/path.dart';
|
| import 'package:unittest/unittest.dart';
|
| import 'package:watcher/watcher.dart';
|
|
|
| +
|
| +var _isFile = new isInstanceOf<File>();
|
| +var _isFolder = new isInstanceOf<Folder>();
|
| +
|
| +
|
| main() {
|
| groupSep = ' | ';
|
|
|
| @@ -287,7 +293,3 @@ main() {
|
| });
|
| });
|
| }
|
| -
|
| -var _isFile = new isInstanceOf<File>();
|
| -var _isFolder = new isInstanceOf<Folder>();
|
| -var _isMemoryResourceException = new isInstanceOf<MemoryResourceException>();
|
|
|