blob: 23a7aaed5a050b0c7ce34ace44b8047d042a9010 [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
* @reviewer rodionov
* @needsreview undocumented
*/
import "../../../Utils/expect.dart";
main() {
Expect.throws((){
new StringBuffer().writeAll(null);
},
(e)=>e is Error
);
}