blob: d4cfc2b39edfcc3b494c2938f26e96a36df2e377 [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 abstract void set length(int newLength)
* Throws [Error] if the [length] is null.
* @description Checks that the exception is thrown as expected.
* @author kaigorodov
*/
library length_A06_t01;
import "../../../Utils/expect.dart";
test(List create([int length])) {
Expect.throws(() {
create().length = null;
},
(e)=>e is Error
);
Expect.throws(() {
create(0).length = null;
},
(e)=>e is Error
);
Expect.throws(() {
create(1).length = null;
},
(e)=>e is Error
);
}