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

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

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/analyzer/test/src/util/lru_map_test.dart ('k') | packages/analyzer/test/src/util/yaml_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/analyzer/test/src/util/test_all.dart
diff --git a/packages/analyzer/test/src/util/test_all.dart b/packages/analyzer/test/src/util/test_all.dart
index f611c58d75f2fa8cadfa750fabd467253de32c9e..6091c5bd8e594c45a36cde8f1386f7a3846f3a38 100644
--- a/packages/analyzer/test/src/util/test_all.dart
+++ b/packages/analyzer/test/src/util/test_all.dart
@@ -2,19 +2,27 @@
// 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 test.src.util;
+library analyzer.test.src.util.test_all;
import 'package:unittest/unittest.dart';
import '../../utils.dart';
+import 'absolute_path_test.dart' as absolute_path_test;
import 'asserts_test.dart' as asserts_test;
+import 'fast_uri_test.dart' as fast_uri_test;
+import 'glob_test.dart' as glob_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', () {
+ absolute_path_test.main();
asserts_test.main();
+ fast_uri_test.main();
+ glob_test.main();
lru_map_test.main();
+ yaml_test.main();
});
}
« no previous file with comments | « packages/analyzer/test/src/util/lru_map_test.dart ('k') | packages/analyzer/test/src/util/yaml_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698