blob: 9a17f63a8e376e17fee6e5e079d78d18987a4b8e [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 Holds the number of hours in a day.
* @description Checks that the value of this property is correct.
* @author rodionov
*/
import "../../../Utils/expect.dart";
main() {
Expect.equals(24, Duration.hoursPerDay);
}