Lines Matching defs:testDateTime

140     private static void testDateTime(String fs, String exp, Calendar c) {
141 testDateTime(fs, exp, c, true);
144 private static void testDateTime(String fs, String exp, Calendar c, boolean upper) {
175 testDateTime(Pattern.compile("t").matcher(fs).replaceFirst("T"),
189 testDateTime("%tk", exp, c);
197 testDateTime("%tl", exp2, c);
203 testDateTime("%tH", exp, c);
209 testDateTime("%tI", exp2, c);
214 testDateTime("%tp", (i <12 ? "am" : "pm"), c);
1615 // testDateTime() verifies the expected output for all applicable types
1620 testDateTime("%tM", "48", c0);
1621 testDateTime("%tN", "584000000", c0);
1622 testDateTime("%tL", "584", c0);
1623 // testDateTime("%tQ", "801283714584", c0);
1625 testDateTime("%ts", String.valueOf(c0.getTimeInMillis() / 1000), c0);
1626 testDateTime("%tS", "34", c0);
1627 testDateTime("%tT", "19:48:34", c0);
1640 testDateTime("%ta", "Tue", c0);
1641 testDateTime("%tA", "Tuesday", c0);
1642 testDateTime("%tb", "May", c0);
1643 testDateTime("%tB", "May", c0);
1644 testDateTime("%tC", "19", c0);
1645 testDateTime("%td", "23", c0);
1646 testDateTime("%te", "23", c0);
1647 testDateTime("%th", "May", c0);
1648 testDateTime("%tj", "143", c0);
1649 testDateTime("%tm", "05", c0);
1650 testDateTime("%ty", "95", c0);
1651 testDateTime("%tY", "1995", c0);
1656 testDateTime("%tz", "-0800", c0);
1657 testDateTime("%tZ", "PST", c0);
1671 testDateTime("%tz", "-0445", Calendar.getInstance(atz));
1681 testDateTime("%tr", "07:48:34 PM", c0);
1682 testDateTime("%tR", "19:48", c0);
1683 testDateTime("%tc", "Tue May 23 19:48:34 PST 1995", c0);
1684 testDateTime("%tD", "05/23/95", c0);
1685 testDateTime("%tF", "1995-05-23", c0);
1686 testDateTime("%-12tF", "1995-05-23 ", c0);
1687 testDateTime("%12tF", " 1995-05-23", c0);