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

Side by Side Diff: tests/language/import_combinators_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
« no previous file with comments | « tests/language/implied_interface_test.dart ('k') | tests/language/import_core_prefix_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 // Dart test program importing with show/hide combinators. 5 // Dart test program importing with show/hide combinators.
6 6
7 library importCombinatorsTest; 7 library importCombinatorsTest;
8 import "package:expect/expect.dart";
9 import "import1_lib.dart" show hide, show hide ugly; 8 import "import1_lib.dart" show hide, show hide ugly;
10 import "export1_lib.dart"; 9 import "export1_lib.dart";
11 import "dart:math" as M show E; 10 import "dart:math" as M show E;
12 11
13 part "import_combinators_part.dart"; 12 part "import_combinators_part.dart";
14 13
15 main() { 14 main() {
16 Expect.equals("hide", hide); 15 Expect.equals("hide", hide);
17 Expect.equals("show", show); 16 Expect.equals("show", show);
18 // Top-level function from part, refers to imported variable show. 17 // Top-level function from part, refers to imported variable show.
19 Expect.equals("show", lookBehindCurtain()); 18 Expect.equals("show", lookBehindCurtain());
20 // Top-level variable E from export1_lib.dart. 19 // Top-level variable E from export1_lib.dart.
21 Expect.equals("E", E); 20 Expect.equals("E", E);
22 // Top-level variable E imported from dart:math. 21 // Top-level variable E imported from dart:math.
23 Expect.equals(2.718281828459045, M.E); 22 Expect.equals(2.718281828459045, M.E);
24 // Constant LN2 from math library, re-exported by export1_lib.dart. 23 // Constant LN2 from math library, re-exported by export1_lib.dart.
25 Expect.equals(0.6931471805599453, LN2); 24 Expect.equals(0.6931471805599453, LN2);
26 } 25 }
OLDNEW
« no previous file with comments | « tests/language/implied_interface_test.dart ('k') | tests/language/import_core_prefix_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698