blob: b7b6b5c5c18bacf4858854309ebb945d1dcd78b0 [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.fromMillisecondsSinceEpoch(int millisecondsSinceEpoch, {bool isUtc: false})
/// Constructs a new DateTime instance with the given millisecondsSinceEpoch.
/// @description Checks that exception is thrown.
/// @author iefremov
/// @needsreview not documented
import "../../../Utils/expect.dart";
main() {
Expect.throws(() => new DateTime.fromMillisecondsSinceEpoch(null, isUtc: true));
Expect.throws(() => new DateTime.fromMillisecondsSinceEpoch(1, isUtc: null));
}