blob: 9f91a152d1b3697252ec0f3d82bce735b08fd94e [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.
// @dart = 2.9
/// @assertion DateTime subtract(Duration other)
/// Throws [Error] if [other] is [:null:].
/// @description Checks that an Error is thrown.
/// @author msyabro
/// @reviewer pagolubev
/// @needsreview undocumented
import "../../../Utils/expect.dart";
main() {
DateTime dateTime=new DateTime(2000, 1, 1);
Expect.throws(() {
dateTime.subtract(null);
},
(e)=>e is Error
);
}