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

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

Issue 10248007: test rename overhaul: step 8 - language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 // Dart test program for constructors without function bodies. 4 // Dart test program for constructors without function bodies.
5 5
6 // Test a non-const constructor works without a body. 6 // Test a non-const constructor works without a body.
7 class First { 7 class First {
8 First(int this.value); 8 First(int this.value);
9 First.named(int this.value); 9 First.named(int this.value);
10 int value; 10 int value;
(...skipping 11 matching lines...) Expand all
22 Expect.equals(4, new First(4).value); 22 Expect.equals(4, new First(4).value);
23 Expect.equals(5, new First.named(5).value); 23 Expect.equals(5, new First.named(5).value);
24 Expect.equals(6, new Second(6).value); 24 Expect.equals(6, new Second(6).value);
25 Expect.equals(7, new Second.named(7).value); 25 Expect.equals(7, new Second.named(7).value);
26 } 26 }
27 } 27 }
28 28
29 main() { 29 main() {
30 ConstructorBodyTest.testMain(); 30 ConstructorBodyTest.testMain();
31 } 31 }
OLDNEW
« no previous file with comments | « tests/language/constructor7_test.dart ('k') | tests/language/constructor_call_wrong_argument_count_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698