| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 // Make sure the years in the range of single digits are handled correctly with | |
| 8 // month roll-over. (This tests an edge condition when delegating to | |
| 9 // JavaScript's Date constructor.) | |
| 10 | |
| 11 void check(String expected, DateTime actual) { | |
| 12 Expect.equals(expected, actual.toString()); | |
| 13 } | |
| 14 | |
| 15 testUtc() { | |
| 16 check("0099-01-01 00:00:00.000Z", new DateTime.utc(99, 1)); | |
| 17 check("0100-01-01 00:00:00.000Z", new DateTime.utc(99, 1 + 12)); | |
| 18 check("0000-01-01 00:00:00.000Z", new DateTime.utc(0, 1)); | |
| 19 check("-0001-01-01 00:00:00.000Z", new DateTime.utc(0, 1 - 12)); | |
| 20 | |
| 21 check("0099-03-02 00:00:00.000Z", new DateTime.utc(99, 2, 30)); | |
| 22 check("0100-03-02 00:00:00.000Z", new DateTime.utc(99, 2 + 12, 30)); | |
| 23 | |
| 24 check("0004-03-01 00:00:00.000Z", new DateTime.utc(3, 2 + 12, 30)); | |
| 25 check("0004-03-01 00:00:00.000Z", new DateTime.utc(4, 2, 30)); | |
| 26 check("0004-03-01 00:00:00.000Z", new DateTime.utc(5, 2 - 12, 30)); | |
| 27 | |
| 28 check("0005-03-02 00:00:00.000Z", new DateTime.utc(4, 2 + 12, 30)); | |
| 29 check("0005-03-02 00:00:00.000Z", new DateTime.utc(5, 2, 30)); | |
| 30 check("0005-03-02 00:00:00.000Z", new DateTime.utc(6, 2 - 12, 30)); | |
| 31 } | |
| 32 | |
| 33 testLocal() { | |
| 34 check("0099-01-01 00:00:00.000", new DateTime(99, 1)); | |
| 35 check("0100-01-01 00:00:00.000", new DateTime(99, 1 + 12)); | |
| 36 check("0000-01-01 00:00:00.000", new DateTime(0, 1)); | |
| 37 check("-0001-01-01 00:00:00.000", new DateTime(0, 1 - 12)); | |
| 38 | |
| 39 check("0099-03-02 00:00:00.000", new DateTime(99, 2, 30)); | |
| 40 check("0100-03-02 00:00:00.000", new DateTime(99, 2 + 12, 30)); | |
| 41 | |
| 42 check("0004-03-01 00:00:00.000", new DateTime(3, 2 + 12, 30)); | |
| 43 check("0004-03-01 00:00:00.000", new DateTime(4, 2, 30)); | |
| 44 check("0004-03-01 00:00:00.000", new DateTime(5, 2 - 12, 30)); | |
| 45 | |
| 46 check("0005-03-02 00:00:00.000", new DateTime(4, 2 + 12, 30)); | |
| 47 check("0005-03-02 00:00:00.000", new DateTime(5, 2, 30)); | |
| 48 check("0005-03-02 00:00:00.000", new DateTime(6, 2 - 12, 30)); | |
| 49 } | |
| 50 | |
| 51 main() { | |
| 52 testUtc(); | |
| 53 testLocal(); | |
| 54 } | |
| OLD | NEW |