blob: 034e95d7d0470d11856f3ee062a8296048c7ca8a [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 seconds in a day.
* @description Checks that the value of this property is correct.
* @author rodionov
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
Expect.equals(24 * 3600, Duration.SECONDS_PER_DAY);
}