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

Unified Diff: tests/corelib/bool_from_environment2_test.dart

Issue 50983002: Implement fromEnvironment on bool, int and String (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add support for negative ints. Add more tests. Created 7 years, 2 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/corelib/bool_from_environment2_test.dart
diff --git a/tests/corelib/main_test.dart b/tests/corelib/bool_from_environment2_test.dart
similarity index 66%
copy from tests/corelib/main_test.dart
copy to tests/corelib/bool_from_environment2_test.dart
index 141281196fae792229f0fe203315105f3d164794..f346b8260924632dd19afd56f1b51b94272c4809 100644
--- a/tests/corelib/main_test.dart
+++ b/tests/corelib/bool_from_environment2_test.dart
@@ -2,9 +2,7 @@
// 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.
-library main_test;
-import "package:expect/expect.dart";
-
main(List<String> args) {
- Expect.equals(0, args.length);
+ const bool.fromEnvironment(1); /// 01: compile-time error
+ const bool.fromEnvironment([]); /// 02: compile-time error
}

Powered by Google App Engine
This is Rietveld 408576698