| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.engine.src.index.store.separate_file_mananer; | 5 library test.services.src.index.store.separate_file_mananer; |
| 6 | 6 |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 | 8 |
| 9 import 'package:analysis_services/src/index/store/separate_file_manager.dart'; |
| 9 import 'package:analysis_testing/reflective_tests.dart'; | 10 import 'package:analysis_testing/reflective_tests.dart'; |
| 10 import 'package:analyzer/src/index/store/separate_file_manager.dart'; | |
| 11 import 'package:path/path.dart'; | 11 import 'package:path/path.dart'; |
| 12 import 'package:unittest/unittest.dart'; | 12 import 'package:unittest/unittest.dart'; |
| 13 | 13 |
| 14 | 14 |
| 15 main() { | 15 main() { |
| 16 groupSep = ' | '; | 16 groupSep = ' | '; |
| 17 group('SeparateFileManager', () { | 17 group('SeparateFileManager', () { |
| 18 runReflectiveTests(_SeparateFileManagerTest); | 18 runReflectiveTests(_SeparateFileManagerTest); |
| 19 }); | 19 }); |
| 20 } | 20 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 expect(bytes, isNull); | 67 expect(bytes, isNull); |
| 68 }); | 68 }); |
| 69 }); | 69 }); |
| 70 }); | 70 }); |
| 71 } | 71 } |
| 72 | 72 |
| 73 bool _existsSync(String name) { | 73 bool _existsSync(String name) { |
| 74 return new File(join(tempDir.path, name)).existsSync(); | 74 return new File(join(tempDir.path, name)).existsSync(); |
| 75 } | 75 } |
| 76 } | 76 } |
| OLD | NEW |