blob: eed9030fe57504e8c6fe9ba981856258b3d1fad2 [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 setEquals(Iterable expected, Iterable actual, [String reason = null])
/// Passing null as either expected or actual results in Error.
/// @description Checks that Error is thrown if any of the required arguments are
/// null.
/// @author rodionov
import "../../../Utils/expect.dart";
main() {
check(null, []);
check(null, [], "");
check(null, [], "not empty");
check([], null);
check([], null, "");
check([], null, "not empty");
check(null, null);
check(null, null, "");
check(null, null, "not empty");
}
void check(var arg1, var arg2, [String ?reason = null]) {
try {
Expect.setEquals(arg1, arg2, reason);
Expect.fail("Error expected");
} on Error catch(e) {
}
}