OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'dart:io'; | 5 import 'dart:io'; |
6 | 6 |
7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
8 import 'package:test/test.dart'; | 8 import 'package:test/test.dart'; |
9 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 Map<String, List<String>> sources = result.sources; | 39 Map<String, List<String>> sources = result.sources; |
40 List<String> keys = sources.keys.toList(); | 40 List<String> keys = sources.keys.toList(); |
41 String url = new File(pathname).uri.toString(); | 41 String url = new File(pathname).uri.toString(); |
42 | 42 |
43 expect(keys, contains('dart:core')); | 43 expect(keys, contains('dart:core')); |
44 expect(keys, contains('dart:collection')); | 44 expect(keys, contains('dart:collection')); |
45 expect(keys, contains('dart:math')); | 45 expect(keys, contains('dart:math')); |
46 expect(keys, contains(url)); | 46 expect(keys, contains(url)); |
47 expect(sources[url], contains('dart:core')); | 47 expect(sources[url], contains('dart:core')); |
48 } | 48 } |
49 | |
50 @override | |
51 bool get enableNewAnalysisDriver => true; | |
52 } | 49 } |
OLD | NEW |