| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 lock_file_test; | 5 library lock_file_test; |
| 6 | 6 |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 | 8 |
| 9 import 'package:pathos/path.dart' as path; | 9 import 'package:path/path.dart' as path; |
| 10 import 'package:scheduled_test/scheduled_test.dart'; | 10 import 'package:scheduled_test/scheduled_test.dart'; |
| 11 | 11 |
| 12 import '../lib/src/entrypoint.dart'; | 12 import '../lib/src/entrypoint.dart'; |
| 13 import '../lib/src/io.dart'; | 13 import '../lib/src/io.dart'; |
| 14 import '../lib/src/system_cache.dart'; | 14 import '../lib/src/system_cache.dart'; |
| 15 import 'descriptor.dart' as d; | 15 import 'descriptor.dart' as d; |
| 16 import 'test_pub.dart'; | 16 import 'test_pub.dart'; |
| 17 | 17 |
| 18 var root; | 18 var root; |
| 19 var entrypoint; | 19 var entrypoint; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 completion(unorderedEquals([ | 215 completion(unorderedEquals([ |
| 216 path.join(root, 'packages', 'subfile1.txt'), | 216 path.join(root, 'packages', 'subfile1.txt'), |
| 217 path.join(root, 'packages', 'subfile2.txt'), | 217 path.join(root, 'packages', 'subfile2.txt'), |
| 218 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), | 218 path.join(root, 'packages', 'subsubdir', 'subsubfile1.txt'), |
| 219 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') | 219 path.join(root, 'packages', 'subsubdir', 'subsubfile2.txt') |
| 220 ]))); | 220 ]))); |
| 221 }); | 221 }); |
| 222 }); | 222 }); |
| 223 }); | 223 }); |
| 224 } | 224 } |
| OLD | NEW |