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

Unified Diff: pkg/shelf/test/harness_console.dart

Issue 226193003: pkg/shelf: removed hop, updated docs link to something useful (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: changelog Created 6 years, 9 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 | « pkg/shelf/pubspec.yaml ('k') | pkg/shelf/tool/hop_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/shelf/test/harness_console.dart
diff --git a/pkg/shelf/test/harness_console.dart b/pkg/shelf/test/harness_console.dart
deleted file mode 100644
index 6c303a7bc9c3989423d1f7b49c5c1ba2a970b834..0000000000000000000000000000000000000000
--- a/pkg/shelf/test/harness_console.dart
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-/*
- * This file imports all individual tests files and allows them to be run
- * all at once.
- *
- * It also exposes `testCore` which is used by `hop_runner` to rust tests via
- * Hop.
- */
-library harness_console;
-
-import 'package:unittest/unittest.dart';
-
-import 'create_middleware_test.dart' as create_middleware;
-import 'http_date_test.dart' as http_date;
-import 'log_middleware_test.dart' as log_middleware;
-import 'media_type_test.dart' as media_type;
-import 'request_test.dart' as request;
-import 'response_test.dart' as response;
-import 'shelf_io_test.dart' as shelf_io;
-import 'stack_test.dart' as stack;
-
-void main() {
- groupSep = ' - ';
-
- group('createMiddleware', create_middleware.main);
- group('http_date', http_date.main);
- group('logRequests', log_middleware.main);
- group('MediaType', media_type.main);
- group('Request', request.main);
- group('Response', response.main);
- group('shelf_io', shelf_io.main);
- group('Stack', stack.main);
-}
« no previous file with comments | « pkg/shelf/pubspec.yaml ('k') | pkg/shelf/tool/hop_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698