blob: 0db78b4a5d502104bb3c1822d6980dc84c0286a2 [file] [log] [blame]
/*
* Copyright (c) 2016, 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.
*/
/**
* @assertion const bool.fromEnvironment(
* String name, {
* bool defaultValue: false
* })
* Returns the boolean value of the environment declaration name
* @description Checks that this constructor returns false if there is no
* environment variable with appropriate name
* @author sgrekhov@unipro.ru
*/
import "../../../Utils/expect.dart";
main() {
const someFlag = const bool.fromEnvironment("someFlag");
Expect.isFalse(someFlag);
}