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

Unified Diff: tests/language/library_env_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/library_ambiguous_test.dart ('k') | tests/language/list_literal_syntax_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/library_env_test.dart
diff --git a/tests/language/library_env_test.dart b/tests/language/library_env_test.dart
index f159bebb83651502a821caa2a1d0072ed3f9e1d4..bb193e6ed029c526074454f904f24f6834485e0e 100644
--- a/tests/language/library_env_test.dart
+++ b/tests/language/library_env_test.dart
@@ -15,11 +15,11 @@ main() {
Expect.isTrue(const bool.fromEnvironment("dart.library.developer"));
// Internal libraries should not be exposed.
- Expect.equals(NOT_PRESENT,
+ Expect.equals(
+ NOT_PRESENT,
const bool.fromEnvironment("dart.library._internal",
defaultValue: NOT_PRESENT));
-
bool hasHtmlSupport;
hasHtmlSupport = true; // //# has_html_support: ok
hasHtmlSupport = false; // //# has_no_html_support: ok
@@ -27,22 +27,28 @@ main() {
if (hasHtmlSupport != null) {
bool expectedResult = hasHtmlSupport ? true : NOT_PRESENT;
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.html",
defaultValue: NOT_PRESENT));
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.indexed_db",
defaultValue: NOT_PRESENT));
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.svg",
defaultValue: NOT_PRESENT));
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.web_audio",
defaultValue: NOT_PRESENT));
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.web_gl",
defaultValue: NOT_PRESENT));
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.web_sql",
defaultValue: NOT_PRESENT));
}
@@ -56,8 +62,7 @@ main() {
// We don't test for the non-existance, but just make sure that
// dart.library.io is not set to true.
Expect.equals(hasIoSupport,
- const bool.fromEnvironment("dart.library.io",
- defaultValue: false));
+ const bool.fromEnvironment("dart.library.io", defaultValue: false));
}
bool hasMirrorSupport;
@@ -67,25 +72,28 @@ main() {
if (hasMirrorSupport != null) {
bool expectedResult = hasMirrorSupport ? true : NOT_PRESENT;
- Expect.equals(expectedResult,
+ Expect.equals(
+ expectedResult,
const bool.fromEnvironment("dart.library.mirrors",
defaultValue: NOT_PRESENT));
}
- Expect.equals(NOT_PRESENT,
+ Expect.equals(
+ NOT_PRESENT,
const bool.fromEnvironment("dart.library.XYZ",
defaultValue: NOT_PRESENT));
- Expect.equals(NOT_PRESENT,
+ Expect.equals(
+ NOT_PRESENT,
const bool.fromEnvironment("dart.library.Collection",
defaultValue: NOT_PRESENT));
- Expect.equals(NOT_PRESENT,
+ Expect.equals(
+ NOT_PRESENT,
const bool.fromEnvironment("dart.library.converT",
defaultValue: NOT_PRESENT));
Expect.equals(NOT_PRESENT,
- const bool.fromEnvironment("dart.library.",
- defaultValue: NOT_PRESENT));
- Expect.equals(NOT_PRESENT,
+ const bool.fromEnvironment("dart.library.", defaultValue: NOT_PRESENT));
+ Expect.equals(
+ NOT_PRESENT,
const bool.fromEnvironment("dart.library.core ",
defaultValue: NOT_PRESENT));
-
}
« no previous file with comments | « tests/language/library_ambiguous_test.dart ('k') | tests/language/list_literal_syntax_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698