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

Unified Diff: pkg/analyzer/test/src/summary/test_all.dart

Issue 1537223002: Clear 'referenceMap' before summarizing a new unit. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Add a new test_all file. Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/src/summary/summary_test.dart ('k') | pkg/analyzer/test/src/test_all.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/summary/test_all.dart
diff --git a/pkg/analyzer/test/src/context/test_all.dart b/pkg/analyzer/test/src/summary/test_all.dart
similarity index 62%
copy from pkg/analyzer/test/src/context/test_all.dart
copy to pkg/analyzer/test/src/summary/test_all.dart
index 301b13c05381d65c1a8a93bcb46c4f3717d5e308..189d00f02c0be20a8366c397aea2eaccb82eeab0 100644
--- a/pkg/analyzer/test/src/context/test_all.dart
+++ b/pkg/analyzer/test/src/summary/test_all.dart
@@ -2,19 +2,19 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library analyzer.test.src.context.test_all;
+library test.src.serialization.test_all;
import 'package:unittest/unittest.dart';
import '../../utils.dart';
-import 'cache_test.dart' as cache_test;
-import 'context_test.dart' as context_test;
+import 'resynthesize_test.dart' as resynthesize_test;
+import 'summary_test.dart' as summary_test;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('context tests', () {
- cache_test.main();
- context_test.main();
+ group('summary tests', () {
+ resynthesize_test.main();
+ summary_test.main();
});
}
« no previous file with comments | « pkg/analyzer/test/src/summary/summary_test.dart ('k') | pkg/analyzer/test/src/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698