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

Unified Diff: tests/standalone/io/socket_invalid_arguments_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/socket_invalid_arguments_test.dart
diff --git a/tests/standalone/io/socket_invalid_arguments_test.dart b/tests/standalone/io/socket_invalid_arguments_test.dart
index 4bc34b602208d4f828c66ace01d2d5ac7f0032d8..5da94e3c874df6c59474499e29c80afaf4b083ac 100644
--- a/tests/standalone/io/socket_invalid_arguments_test.dart
+++ b/tests/standalone/io/socket_invalid_arguments_test.dart
@@ -8,25 +8,26 @@ import "package:async_helper/async_helper.dart";
import "package:expect/expect.dart";
class NotAnInteger {
- operator==(other) => other == 1;
- operator<(other) => other > 1;
- operator+(other) => 1;
+ operator ==(other) => other == 1;
+ operator <(other) => other > 1;
+ operator +(other) => 1;
}
class NotAList {
get length => 10;
- operator[](index) => 1;
+ operator [](index) => 1;
}
testSocketCreation(host, port) {
asyncStart();
try {
- Socket.connect(host, port)
+ Socket
+ .connect(host, port)
.then((socket) => Expect.fail("Shouldn't get connected"))
.catchError((e) {
- Expect.isTrue(e is ArgumentError || e is SocketException);
- asyncEnd();
- });
+ Expect.isTrue(e is ArgumentError || e is SocketException);
+ asyncEnd();
+ });
} catch (e) {
Expect.isTrue(e is ArgumentError || e is SocketException);
asyncEnd();
@@ -40,21 +41,18 @@ testAdd(buffer) {
server.listen((socket) => socket.destroy());
Socket.connect("127.0.0.1", server.port).then((socket) {
int errors = 0;
- socket.done
- .catchError((e) { errors++; })
- .then((_) {
- Expect.equals(1, errors);
- asyncEnd();
- server.close();
- });
- socket.listen(
- (_) { },
- onError: (error) {
- Expect.fail("Error on stream");
- },
- onDone: () {
- asyncEnd();
- });
+ socket.done.catchError((e) {
+ errors++;
+ }).then((_) {
+ Expect.equals(1, errors);
+ asyncEnd();
+ server.close();
+ });
+ socket.listen((_) {}, onError: (error) {
+ Expect.fail("Error on stream");
+ }, onDone: () {
+ asyncEnd();
+ });
socket.add(buffer);
});
});
@@ -64,9 +62,9 @@ testServerSocketCreation(address, port, backlog) {
asyncStart();
var server;
try {
- ServerSocket.bind(address, port, backlog: backlog)
- .then((_) { Expect.fail("ServerSocket bound"); })
- .catchError((e) => asyncEnd());
+ ServerSocket.bind(address, port, backlog: backlog).then((_) {
+ Expect.fail("ServerSocket bound");
+ }).catchError((e) => asyncEnd());
} catch (e) {
asyncEnd();
}

Powered by Google App Engine
This is Rietveld 408576698