blob: f54f8829962fca729e6beb9143e8105414fed9a2 [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 final int month
* Returns the month into the year 1..12.
* @description Creates a new DateTime with various integer month values (1..12),
* and reads the value back.
* @author rodionov
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
check(DateTime.JANUARY);
check(DateTime.FEBRUARY);
check(DateTime.MARCH);
check(DateTime.APRIL);
check(DateTime.MAY);
check(DateTime.JUNE);
check(DateTime.JULY);
check(DateTime.AUGUST);
check(DateTime.SEPTEMBER);
check(DateTime.OCTOBER);
check(DateTime.NOVEMBER);
check(DateTime.DECEMBER);
}
// creates a new DateTime with valid year and day values, and the specified month
// value, then reads it back and verifies that it is an integer and equals the
// previously specified value
void check(int m) {
DateTime date = new DateTime(2011, m, 18, 0, 0, 0, 0);
Expect.isTrue(date.month is int);
Expect.equals(m, date.month);
}