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

Unified Diff: pkg/analysis_server/test/channel/test_all.dart

Issue 544693002: Split channels library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
Index: pkg/analysis_server/test/channel/test_all.dart
diff --git a/pkg/analysis_server/test/computer/test_all.dart b/pkg/analysis_server/test/channel/test_all.dart
similarity index 61%
copy from pkg/analysis_server/test/computer/test_all.dart
copy to pkg/analysis_server/test/channel/test_all.dart
index 9122f140100d52dee5d6623b8dbdf9aaa6f148e7..a3a0c3ad1b0cd5b60bf883999bca8daf40340f49 100644
--- a/pkg/analysis_server/test/computer/test_all.dart
+++ b/pkg/analysis_server/test/channel/test_all.dart
@@ -2,12 +2,12 @@
// 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.computer.all;
+library test.channel.all;
import 'package:unittest/unittest.dart';
-import 'element_test.dart' as element_test;
-import 'error_test.dart' as error_test;
+import 'byte_stream_channel_test.dart' as byte_stream_channel_test;
+import 'web_socket_channel_test.dart' as web_socket_channel_test;
/**
@@ -16,7 +16,7 @@ import 'error_test.dart' as error_test;
main() {
groupSep = ' | ';
group('computer', () {
- element_test.main();
- error_test.main();
+ byte_stream_channel_test.main();
+ web_socket_channel_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698