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

Side by Side Diff: tests/language/canonical_const_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/canonical_const2_test.dart ('k') | tests/language/cascade_2_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) 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 // Check that initializers of static const fields are compile time constants. 4 // Check that initializers of static const fields are compile time constants.
5 5
6 import "package:expect/expect.dart";
7
6 class CanonicalConstTest { 8 class CanonicalConstTest {
7 static const A = const C1(); 9 static const A = const C1();
8 static const B = const C2(); 10 static const B = const C2();
9 11
10 static testMain() { 12 static testMain() {
11 Expect.identical(null, null); 13 Expect.identical(null, null);
12 Expect.isFalse(identical(null, 0)); 14 Expect.isFalse(identical(null, 0));
13 Expect.identical(1, 1); 15 Expect.identical(1, 1);
14 Expect.isFalse(identical(1, 2)); 16 Expect.isFalse(identical(1, 2));
15 Expect.identical(true, true); 17 Expect.identical(true, true);
(...skipping 19 matching lines...) Expand all
35 const C1(); 37 const C1();
36 } 38 }
37 39
38 class C2 extends C1 { 40 class C2 extends C1 {
39 const C2() : super(); 41 const C2() : super();
40 } 42 }
41 43
42 main() { 44 main() {
43 CanonicalConstTest.testMain(); 45 CanonicalConstTest.testMain();
44 } 46 }
OLDNEW
« no previous file with comments | « tests/language/canonical_const2_test.dart ('k') | tests/language/cascade_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698