blob: a7e7ed43ed11ec2c2310fc90c051c5b8de3f22d5 [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 void writeAll(Iterable objects, [String separator = ""])
* Passing null as argument results in an Error
* @description Tries to pass null as argument
* @author msyabro
*/
import "../../../Utils/expect.dart";
main() {
Expect.throws((){new StringBuffer().writeAll(null);}, (e) => e is Error);
}