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

Side by Side Diff: tests/standalone/io/http_connection_header_test.dart

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 5
6 import "package:expect/expect.dart";
6 import "dart:isolate"; 7 import "dart:isolate";
7 import "dart:io"; 8 import "dart:io";
8 9
9 void setConnectionHeaders(HttpHeaders headers) { 10 void setConnectionHeaders(HttpHeaders headers) {
10 headers.add(HttpHeaders.CONNECTION, "my-connection-header1"); 11 headers.add(HttpHeaders.CONNECTION, "my-connection-header1");
11 headers.add("My-Connection-Header1", "some-value1"); 12 headers.add("My-Connection-Header1", "some-value1");
12 headers.add(HttpHeaders.CONNECTION, "my-connection-header2"); 13 headers.add(HttpHeaders.CONNECTION, "my-connection-header2");
13 headers.add("My-Connection-Header2", "some-value2"); 14 headers.add("My-Connection-Header2", "some-value2");
14 } 15 }
15 16
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 }); 73 });
73 } 74 }
74 }); 75 });
75 } 76 }
76 77
77 78
78 void main() { 79 void main() {
79 test(2, false); 80 test(2, false);
80 test(2, true); 81 test(2, true);
81 } 82 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_connection_close_test.dart ('k') | tests/standalone/io/http_connection_info_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698