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

Side by Side Diff: tests/language/inst_field_initializer_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
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
8 class Cheese { 6 class Cheese {
9 static const mild = 1; 7 static const mild = 1;
10 static const stinky = 2; 8 static const stinky = 2;
11 9
12 // Instance fields with initializer expression. 10 // Instance fields with initializer expression.
13 String name = ""; 11 String name = "";
14 var smell = mild; 12 var smell = mild;
15 13
16 Cheese() { 14 Cheese() {
17 Expect.equals("", this.name); 15 Expect.equals("", this.name);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 Expect.equals("Munster", munster.name); 51 Expect.equals("Munster", munster.name);
54 Expect.equals(Cheese.stinky, munster.smell); 52 Expect.equals(Cheese.stinky, munster.smell);
55 53
56 var brie = new Cheese.hideAndSeek("Brie"); 54 var brie = new Cheese.hideAndSeek("Brie");
57 Expect.equals("Brie", brie.name); 55 Expect.equals("Brie", brie.name);
58 Expect.equals(Cheese.mild, brie.smell); 56 Expect.equals(Cheese.mild, brie.smell);
59 57
60 var t = new HasNoExplicitConstructor(); 58 var t = new HasNoExplicitConstructor();
61 Expect.equals("Tilsiter", t.s); 59 Expect.equals("Tilsiter", t.s);
62 } 60 }
OLDNEW
« no previous file with comments | « tests/language/inline_value_context_test.dart ('k') | tests/language/instance_compound_assignment_operator_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698