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

Side by Side Diff: tests/pkg/socket/socket_test.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 // Copyright (c) 2014, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dartino 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 import 'dart:typed_data'; 5 import 'dart:typed_data';
6 6
7 import 'package:expect/expect.dart'; 7 import 'package:expect/expect.dart';
8 import 'package:os/os.dart' as os; 8 import 'package:os/os.dart' as os;
9 import 'package:socket/socket.dart'; 9 import 'package:socket/socket.dart';
10 10
11 void main() { 11 void main() {
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 Expect.throws(() => client.write(createBuffer(CHUNK_SIZE)), 193 Expect.throws(() => client.write(createBuffer(CHUNK_SIZE)),
194 isSocketException); 194 isSocketException);
195 Expect.throws(() => socket.write(createBuffer(CHUNK_SIZE)), 195 Expect.throws(() => socket.write(createBuffer(CHUNK_SIZE)),
196 isSocketException); 196 isSocketException);
197 197
198 client.close(); 198 client.close();
199 socket.close(); 199 socket.close();
200 server.close(); 200 server.close();
201 } 201 }
OLDNEW
« no previous file with comments | « tests/pkg/socket/socket.status ('k') | tests/power_management_tests/power_management_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698