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

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

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
« no previous file with comments | « tests/standalone/io/http_advanced_test.dart ('k') | tests/standalone/io/http_read_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // VMOptions= 5 // VMOptions=
6 // VMOptions=--short_socket_read 6 // VMOptions=--short_socket_read
7 // VMOptions=--short_socket_write 7 // VMOptions=--short_socket_write
8 // VMOptions=--short_socket_read --short_socket_write 8 // VMOptions=--short_socket_read --short_socket_write
9 9
10 #import("dart:isolate"); 10 #import("dart:isolate");
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 class TestServerCommand { 55 class TestServerCommand {
56 static const START = 0; 56 static const START = 0;
57 static const STOP = 1; 57 static const STOP = 1;
58 static const CHUNKED_ENCODING = 2; 58 static const CHUNKED_ENCODING = 2;
59 59
60 TestServerCommand.start() : _command = START; 60 TestServerCommand.start() : _command = START;
61 TestServerCommand.stop() : _command = STOP; 61 TestServerCommand.stop() : _command = STOP;
62 TestServerCommand.chunkedEncoding() : _command = CHUNKED_ENCODING; 62 TestServerCommand.chunkedEncoding() : _command = CHUNKED_ENCODING;
63 63
64 bool get isStart() => _command == START; 64 bool get isStart => _command == START;
65 bool get isStop() => _command == STOP; 65 bool get isStop => _command == STOP;
66 bool get isChunkedEncoding() => _command == CHUNKED_ENCODING; 66 bool get isChunkedEncoding => _command == CHUNKED_ENCODING;
67 67
68 int _command; 68 int _command;
69 } 69 }
70 70
71 71
72 class TestServerStatus { 72 class TestServerStatus {
73 static const STARTED = 0; 73 static const STARTED = 0;
74 static const STOPPED = 1; 74 static const STOPPED = 1;
75 static const ERROR = 2; 75 static const ERROR = 2;
76 76
77 TestServerStatus.started(this._port) : _state = STARTED; 77 TestServerStatus.started(this._port) : _state = STARTED;
78 TestServerStatus.stopped() : _state = STOPPED; 78 TestServerStatus.stopped() : _state = STOPPED;
79 TestServerStatus.error() : _state = ERROR; 79 TestServerStatus.error() : _state = ERROR;
80 80
81 bool get isStarted() => _state == STARTED; 81 bool get isStarted => _state == STARTED;
82 bool get isStopped() => _state == STOPPED; 82 bool get isStopped => _state == STOPPED;
83 bool get isError() => _state == ERROR; 83 bool get isError => _state == ERROR;
84 84
85 int get port() => _port; 85 int get port => _port;
86 86
87 int _state; 87 int _state;
88 int _port; 88 int _port;
89 } 89 }
90 90
91 91
92 void startTestServer() { 92 void startTestServer() {
93 var server = new TestServer(); 93 var server = new TestServer();
94 server.init(); 94 server.init();
95 port.receive(server.dispatch); 95 port.receive(server.dispatch);
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 } 303 }
304 304
305 void main() { 305 void main() {
306 testStartStop(); 306 testStartStop();
307 testGET(); 307 testGET();
308 testPOST(true); 308 testPOST(true);
309 testPOST(false); 309 testPOST(false);
310 test404(); 310 test404();
311 testReasonPhrase(); 311 testReasonPhrase();
312 } 312 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_advanced_test.dart ('k') | tests/standalone/io/http_read_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698