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

Side by Side Diff: tests/language/closure_shared_state_test.dart

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated latest tests. 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 import "package:expect/expect.dart";
6
5 // Tests for closures sharing mutable bindings. 7 // Tests for closures sharing mutable bindings.
6 8
7 var f; 9 var f;
8 var g; 10 var g;
9 11
10 setupPlain() { 12 setupPlain() {
11 int j = 1000; 13 int j = 1000;
12 // Two closures sharing variable 'j'; j initially is 1000. 14 // Two closures sharing variable 'j'; j initially is 1000.
13 f = (int x) { var q = j; j = x; return q;}; 15 f = (int x) { var q = j; j = x; return q;};
14 g = (int x) { var q = j; j = x; return q;}; 16 g = (int x) { var q = j; j = x; return q;};
(...skipping 27 matching lines...) Expand all
42 Expect.equals(300, g(400)); 44 Expect.equals(300, g(400));
43 Expect.equals(400, g(500)); 45 Expect.equals(400, g(500));
44 } 46 }
45 47
46 48
47 main() { 49 main() {
48 test(setupPlain); 50 test(setupPlain);
49 test(setupLoop); 51 test(setupLoop);
50 test(setupNestedLoop); 52 test(setupNestedLoop);
51 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698