assertFunction("dow(" + seconds + ")", dateTime.dayOfWeek().get());
assertFunction("day(" + seconds + ")", dateTime.getDayOfMonth());
assertFunction("day_of_month(" + seconds + ")", dateTime.getDayOfMonth());
assertFunction("day_of_year(" + seconds + ")", dateTime.dayOfYear().get());
assertFunction("doy(" + seconds + ")", dateTime.dayOfYear().get());
assertFunction("week(" + seconds + ")", dateTime.weekOfWeekyear().get());
assertFunction("week_of_year(" + seconds + ")", dateTime.weekOfWeekyear().get());
assertFunction("month(" + seconds + ")", dateTime.getMonthOfYear());
assertFunction("quarter(" + seconds + ")", dateTime.getMonthOfYear() / 4 + 1);
assertFunction("year(" + seconds + ")", dateTime.getYear());
assertFunction("century(" + seconds + ")", dateTime.getCenturyOfEra());