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

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

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 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 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";
7 import "dart:isolate"; 6 import "dart:isolate";
8 import "dart:io"; 7 import "dart:io";
9 8
10 void setConnectionHeaders(HttpHeaders headers) { 9 void setConnectionHeaders(HttpHeaders headers) {
11 headers.add(HttpHeaders.CONNECTION, "my-connection-header1"); 10 headers.add(HttpHeaders.CONNECTION, "my-connection-header1");
12 headers.add("My-Connection-Header1", "some-value1"); 11 headers.add("My-Connection-Header1", "some-value1");
13 headers.add(HttpHeaders.CONNECTION, "my-connection-header2"); 12 headers.add(HttpHeaders.CONNECTION, "my-connection-header2");
14 headers.add("My-Connection-Header2", "some-value2"); 13 headers.add("My-Connection-Header2", "some-value2");
15 } 14 }
16 15
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }); 72 });
74 } 73 }
75 }); 74 });
76 } 75 }
77 76
78 77
79 void main() { 78 void main() {
80 test(2, false); 79 test(2, false);
81 test(2, true); 80 test(2, true);
82 } 81 }
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