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

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

Issue 17406010: Move getters from Options to Platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed Dart_GetType Created 7 years, 5 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/https_server_test.dart ('k') | tests/standalone/io/platform_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 // Stress test isolate generation. 4 // Stress test isolate generation.
5 // DartOptions=tests/standalone/io/options_test.dart 10 options_test 20 5 // DartOptions=tests/standalone/io/options_test.dart 10 options_test 20
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 import "dart:math"; 8 import "dart:math";
9 import "dart:io"; 9 import "dart:io";
10 10
11 main() { 11 main() {
12 var opts = new Options(); 12 var opts = new Options();
13 13
14 // Basic test for functionality. 14 // Basic test for functionality.
15 Expect.equals(3, opts.arguments.length); 15 Expect.equals(3, opts.arguments.length);
16 Expect.equals(10, int.parse(opts.arguments[0])); 16 Expect.equals(10, int.parse(opts.arguments[0]));
17 Expect.equals("options_test", opts.arguments[1]); 17 Expect.equals("options_test", opts.arguments[1]);
18 Expect.equals(20, int.parse(opts.arguments[2])); 18 Expect.equals(20, int.parse(opts.arguments[2]));
19 Expect.isTrue(opts.executable.contains('dart'));
20 Expect.isTrue(opts.script.replaceAll('\\', '/').
21 endsWith('tests/standalone/io/options_test.dart'));
22 19
23 // Now add an additional argument. 20 // Now add an additional argument.
24 opts.arguments.add("Fourth"); 21 opts.arguments.add("Fourth");
25 Expect.equals(4, opts.arguments.length); 22 Expect.equals(4, opts.arguments.length);
26 Expect.equals(10, int.parse(opts.arguments[0])); 23 Expect.equals(10, int.parse(opts.arguments[0]));
27 Expect.equals("options_test", opts.arguments[1]); 24 Expect.equals("options_test", opts.arguments[1]);
28 Expect.equals(20, int.parse(opts.arguments[2])); 25 Expect.equals(20, int.parse(opts.arguments[2]));
29 Expect.equals("Fourth", opts.arguments[3]); 26 Expect.equals("Fourth", opts.arguments[3]);
30 27
31 // Check that a new options object still gets the original arguments. 28 // Check that a new options object still gets the original arguments.
32 var opts2 = new Options(); 29 var opts2 = new Options();
33 Expect.equals(3, opts2.arguments.length); 30 Expect.equals(3, opts2.arguments.length);
34 Expect.equals(10, int.parse(opts2.arguments[0])); 31 Expect.equals(10, int.parse(opts2.arguments[0]));
35 Expect.equals("options_test", opts2.arguments[1]); 32 Expect.equals("options_test", opts2.arguments[1]);
36 Expect.equals(20, int.parse(opts2.arguments[2])); 33 Expect.equals(20, int.parse(opts2.arguments[2]));
37 } 34 }
OLDNEW
« no previous file with comments | « tests/standalone/io/https_server_test.dart ('k') | tests/standalone/io/platform_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698