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

Side by Side Diff: pkg/analysis_services/test/index/store/separate_file_manager_test.dart

Issue 375693002: Move index/search to services. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analysis_services/test/index/store/mocks.dart ('k') | pkg/analysis_services/test/index/store/single_source_container.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698