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

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

Issue 1425393002: Map merging. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Runtime type check fixes. Created 5 years, 1 month 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
Index: pkg/analyzer/test/src/util/test_all.dart
diff --git a/pkg/analyzer/test/src/util/test_all.dart b/pkg/analyzer/test/src/util/test_all.dart
index f611c58d75f2fa8cadfa750fabd467253de32c9e..02a23b9fdb02adda2f7965bfd026edb12986b4dd 100644
--- a/pkg/analyzer/test/src/util/test_all.dart
+++ b/pkg/analyzer/test/src/util/test_all.dart
@@ -9,12 +9,14 @@ import 'package:unittest/unittest.dart';
import '../../utils.dart';
import 'asserts_test.dart' as asserts_test;
import 'lru_map_test.dart' as lru_map_test;
+import 'yaml_test.dart' as yaml_test;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('task tests', () {
+ group('util tests', () {
asserts_test.main();
lru_map_test.main();
+ yaml_test.main();
});
}
« no previous file with comments | « pkg/analyzer/test/source/analysis_options_provider_test.dart ('k') | pkg/analyzer/test/src/util/yaml_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698