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

Unified Diff: tests/language/src/StaticFinalFieldTest.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 side-by-side diff with in-line comments
Download patch
Index: tests/language/src/StaticFinalFieldTest.dart
diff --git a/tests/language/src/StaticFinalFieldTest.dart b/tests/language/src/StaticFinalFieldTest.dart
deleted file mode 100644
index da36db36399a550b4ec6fdc7cbee3fb5b8ce5876..0000000000000000000000000000000000000000
--- a/tests/language/src/StaticFinalFieldTest.dart
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-// Dart test program for testing static final fields.
-
-interface Spain {
- static final AG = "Antoni Gaudi";
- static final SD = "Salvador Dali";
-}
-
-interface Switzerland {
- static final AG = "Alberto Giacometti";
- static final LC = "Le Corbusier";
-}
-
-class A implements Switzerland {
- const A() : n = 5;
- final n;
- static final a = const A();
- static final b = 3 + 5;
- static final c = A.b + 7;
- static final d = const A();
- static final s1 = "hula";
- static final s2 = "hula";
- static final s3 = "hop";
- static final d1 = 1.1;
- static final d2 = 0.55 + 0.55;
- static final artist2 = Switzerland.AG;
- static final architect1 = Spain.AG;
- static final array1 = const <int>[1, 2];
- static final map1 = const {"Monday": 1, "Tuesday": 2, };
-}
-
-class StaticFinalFieldTest {
- static testMain() {
- Expect.equals(15, A.c);
- Expect.equals(8, A.b);
- Expect.equals(5, A.a.n);
- Expect.equals(true, 8 === A.b);
- Expect.equals(true, A.a === A.d);
- Expect.equals(true, A.s1 === A.s2);
- Expect.equals(false, A.s1 === A.s3);
- Expect.equals(false, A.s1 === A.b);
- Expect.equals(true, A.d1 === A.d2);
- Expect.equals(true, Spain.SD == "Salvador Dali");
- Expect.equals(true, A.artist2 == "Alberto Giacometti");
- Expect.equals(true, A.architect1 == "Antoni Gaudi");
- Expect.equals(2, A.map1["Tuesday"]);
- }
-}
-
-main() {
- StaticFinalFieldTest.testMain();
-}
« no previous file with comments | « tests/language/src/StaticFinalFieldNegativeTest.dart ('k') | tests/language/src/StaticImplicitClosureTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698