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

Unified Diff: pkg/analysis_server/test/protocol_test.dart

Issue 419563002: Remove any 'group' invocations enclosing 'runReflectiveTests'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: pkg/analysis_server/test/protocol_test.dart
diff --git a/pkg/analysis_server/test/protocol_test.dart b/pkg/analysis_server/test/protocol_test.dart
index 8d69c6d699fa6982d4e9633c05e99bffc027004b..1e4c4dc70e6a46767eedf698b12f25a4dd11bb9a 100644
--- a/pkg/analysis_server/test/protocol_test.dart
+++ b/pkg/analysis_server/test/protocol_test.dart
@@ -17,21 +17,11 @@ Matcher _throwsRequestFailure = throwsA(new isInstanceOf<RequestFailure>());
main() {
groupSep = ' | ';
- group('Notification', () {
- runReflectiveTests(NotificationTest);
- });
- group('Request', () {
- runReflectiveTests(RequestTest);
- });
- group('RequestError', () {
- runReflectiveTests(RequestErrorTest);
- });
- group('RequestDatum', () {
- runReflectiveTests(RequestDatumTest);
- });
- group('Response', () {
- runReflectiveTests(ResponseTest);
- });
+ runReflectiveTests(NotificationTest);
+ runReflectiveTests(RequestTest);
+ runReflectiveTests(RequestErrorTest);
+ runReflectiveTests(RequestDatumTest);
+ runReflectiveTests(ResponseTest);
}
« no previous file with comments | « pkg/analysis_server/test/package_uri_resolver_test.dart ('k') | pkg/analysis_server/test/search/element_references_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698