blob: f0164174bc4ba7362a4e5422dc2eb417a80724b2 [file] [log] [blame]
// 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.
/**
* @assertion static void isFalse(var actual, [String reason = null])
* Descriptive error message is provided in case of failure.
* @description Checks that message of thrown ExpectException includes
* representation of the actual value, as well as the reason.
* @author varlax
*/
import "../../../Utils/expect.dart";
main() {
check(0);
check(0, "");
check(0, "not empty");
check(null);
check(null, "");
check(null, "not empty");
check(true);
check(true, "");
check(true, "not empty");
check(new Object());
check(new Object(), "");
check(new Object(), "not empty");
}
void check(var arg, [String? reason = null]) {
try {
Expect.isFalse(arg, reason);
throw new Exception("ExpectException expected");
} on ExpectException catch(e) {
String msg = e.message as String;
if (!msg.contains(arg != null ? arg.toString() : "null", 0)) throw "no actual value";
if (reason != null && !reason.isEmpty && !msg.contains(reason, 0)) throw "no reason";
}
}