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

Side by Side Diff: pkg/analysis_server/test/integration/analysis/get_reachable_sources_test.dart

Issue 2820893002: Make the analysis server integration tests driver only. (Closed)
Patch Set: uncomment test code Created 3 years, 8 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698