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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 // Test for instance field initializer expressions. 4 // Test for instance field initializer expressions.
5 5
6 import "package:expect/expect.dart";
7
6 class Cheese { 8 class Cheese {
7 static const mild = 1; 9 static const mild = 1;
8 static const stinky = 2; 10 static const stinky = 2;
9 11
10 // Instance fields with initializer expression. 12 // Instance fields with initializer expression.
11 String name = ""; 13 String name = "";
12 var smell = mild; 14 var smell = mild;
13 15
14 Cheese() { 16 Cheese() {
15 Expect.equals("", this.name); 17 Expect.equals("", this.name);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 Expect.equals("Munster", munster.name); 53 Expect.equals("Munster", munster.name);
52 Expect.equals(Cheese.stinky, munster.smell); 54 Expect.equals(Cheese.stinky, munster.smell);
53 55
54 var brie = new Cheese.hideAndSeek("Brie"); 56 var brie = new Cheese.hideAndSeek("Brie");
55 Expect.equals("Brie", brie.name); 57 Expect.equals("Brie", brie.name);
56 Expect.equals(Cheese.mild, brie.smell); 58 Expect.equals(Cheese.mild, brie.smell);
57 59
58 var t = new HasNoExplicitConstructor(); 60 var t = new HasNoExplicitConstructor();
59 Expect.equals("Tilsiter", t.s); 61 Expect.equals("Tilsiter", t.s);
60 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698