ISO8601d: Added ::daysInMonth and tests
This commit is contained in:
@@ -71,7 +71,7 @@ void testParse (
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
int main (int argc, char** argv)
|
||||
{
|
||||
UnitTest t (792);
|
||||
UnitTest t (794);
|
||||
|
||||
ISO8601d iso;
|
||||
std::string::size_type start = 0;
|
||||
@@ -224,6 +224,10 @@ int main (int argc, char** argv)
|
||||
t.ok (ISO8601d::leapYear (2000), "2000 is a leap year");
|
||||
t.notok (ISO8601d::leapYear (1900), "1900 is not a leap year");
|
||||
|
||||
// Days in month.
|
||||
t.is (ISO8601d::daysInMonth (2, 2008), 29, "29 days in February 2008");
|
||||
t.is (ISO8601d::daysInMonth (2, 2007), 28, "28 days in February 2007");
|
||||
|
||||
t.is (ISO8601d::dayOfWeek ("SUNDAY"), 0, "SUNDAY == 0");
|
||||
t.is (ISO8601d::dayOfWeek ("sunday"), 0, "sunday == 0");
|
||||
t.is (ISO8601d::dayOfWeek ("Sunday"), 0, "Sunday == 0");
|
||||
|
||||
Reference in New Issue
Block a user