Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: tests/corelib/date_time4_test.dart

Issue 10391111: Support up to 6 digits after the decimal point in Date.fromString. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/date.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 // Test fromString with 6 digits after the decimal point.
6
7 main() {
8 // We only support milliseconds. If the user supplies more data (the "51"
9 // here), we round.
10 // If (eventually) we support more than just milliseconds this test could
11 // fail. Please update the test in this case.
12 Date dt1 = new Date.fromString("1999-01-02 23:59:59.999519");
13 Expect.equals(1999, dt1.year);
14 Expect.equals(1, dt1.month);
15 Expect.equals(3, dt1.day);
16 Expect.equals(0, dt1.hours);
17 Expect.equals(0, dt1.minutes);
18 Expect.equals(0, dt1.seconds);
19 Expect.equals(0, dt1.milliseconds);
20 Expect.equals(false, dt1.isUtc());
21 dt1 = new Date.fromString("1999-01-02 23:58:59.999519Z");
22 Expect.equals(1999, dt1.year);
23 Expect.equals(1, dt1.month);
24 Expect.equals(2, dt1.day);
25 Expect.equals(23, dt1.hours);
26 Expect.equals(59, dt1.minutes);
27 Expect.equals(0, dt1.seconds);
28 Expect.equals(0, dt1.milliseconds);
29 Expect.equals(true, dt1.isUtc());
30 dt1 = new Date.fromString("0009-09-09 09:09:09.009411Z");
31 Expect.equals(9, dt1.year);
32 Expect.equals(9, dt1.month);
33 Expect.equals(9, dt1.day);
34 Expect.equals(9, dt1.hours);
35 Expect.equals(9, dt1.minutes);
36 Expect.equals(9, dt1.seconds);
37 Expect.equals(9, dt1.milliseconds);
38 Expect.equals(true, dt1.isUtc());
39 String svnDate = "2012-03-30T04:28:13.752341Z";
40 dt1 = new Date.fromString(svnDate);
41 Expect.equals(2012, dt1.year);
42 Expect.equals(3, dt1.month);
43 Expect.equals(30, dt1.day);
44 Expect.equals(4, dt1.hours);
45 Expect.equals(28, dt1.minutes);
46 Expect.equals(13, dt1.seconds);
47 Expect.equals(752, dt1.milliseconds);
48 Expect.equals(true, dt1.isUtc());
49
50 }
OLDNEW
« no previous file with comments | « runtime/lib/date.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698