blob: 1bcd48efb0e14e50d198ec1f00d506b87d8b66d0 [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 Returns this [Duration] in minutes.
* @description Checks that duration calculation is correct
* @author rodionov
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
check(0, 0, 0, 0, 0);
check(0, 0, 0, 0, 1);
check(0, 0, 0, 0, -1);
check(1, 1, 1, 1, 1);
check(-1, -1, -1, -1, -1);
check(9223372036854775807, 9223372036854775807,
9223372036854775807, 9223372036854775807, 9223372036854775807);
check(-9223372036854775807, -9223372036854775807,
-9223372036854775807, -9223372036854775807, -9223372036854775807);
}
void check(int d, int h, int m, int s, int ms) {
Expect.equals((d * 24 * 3600000 + h * 3600000 + m * 60000 + s * 1000 + ms) ~/ (60 * 1000),
new Duration(days: d, hours: h, minutes: m, seconds: s, milliseconds: ms).inMinutes);
}