blob: c3fc23dffbe024ad081fe7b249ad1c88a9b04b2d [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 Holds the number of milliseconds in a second.
/// @description Checks that the value of this property is correct.
/// @author rodionov
import "../../../Utils/expect.dart";
main() {
Expect.equals(1000, Duration.millisecondsPerSecond);
}