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

Side by Side Diff: tests/language/static_field_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, 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
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 // Dart test program for testing setting/getting/initializing static fields. 4 // Dart test program for testing setting/getting/initializing static fields.
5 5
6 class First { 6 class First {
7 First() {} 7 First() {}
8 static var a; 8 static var a;
9 static var b; 9 static var b;
10 static final int c = 1; 10 static final int c = 1;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 Expect.equals(24, First.a); 59 Expect.equals(24, First.a);
60 Expect.equals(10, First.b); 60 Expect.equals(10, First.b);
61 } 61 }
62 } 62 }
63 63
64 64
65 main() { 65 main() {
66 StaticFieldTest.testMain(); 66 StaticFieldTest.testMain();
67 InitializerTest.testStaticFieldInitialization(); 67 InitializerTest.testStaticFieldInitialization();
68 } 68 }
OLDNEW
« no previous file with comments | « tests/language/static_field4a_negative_test.dart ('k') | tests/language/static_final_field2_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698