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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/language/super_setter_test.dart ('k') | tests/language/switch6_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 import "package:expect/expect.dart";
6
5 int i = 0; 7 int i = 0;
6 8
7 // Tests super calls and constructors. 9 // Tests super calls and constructors.
8 main() { 10 main() {
9 Sub sub = new Sub(1, 2); 11 Sub sub = new Sub(1, 2);
10 Expect.equals(1, sub.x); 12 Expect.equals(1, sub.x);
11 Expect.equals(2, sub.y); 13 Expect.equals(2, sub.y);
12 Expect.equals(3, sub.z); 14 Expect.equals(3, sub.z);
13 Expect.equals(1, sub.v); 15 Expect.equals(1, sub.v);
14 Expect.equals(2, sub.w); 16 Expect.equals(2, sub.w);
(...skipping 24 matching lines...) Expand all
39 var u, v, w; 41 var u, v, w;
40 42
41 Sub(a, b) : super(a, b), this.v = a, this.w = b { 43 Sub(a, b) : super(a, b), this.v = a, this.w = b {
42 u = a + b; 44 u = a + b;
43 } 45 }
44 46
45 Sub.stat() : super.stat(), this.v = i++, this.w = i++ { 47 Sub.stat() : super.stat(), this.v = i++, this.w = i++ {
46 u = i++; 48 u = i++;
47 } 49 }
48 } 50 }
OLDNEW
« no previous file with comments | « tests/language/super_setter_test.dart ('k') | tests/language/switch6_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698