/* * Created on Apr 2, 2009 * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. * * Copyright @2009 the original author or authors. */ package org.fest.swing.junit.ant; import static java.util.Calendar.*; import static org.fest.assertions.Assertions.assertThat; import java.util.Calendar; import java.util.GregorianCalendar; import org.junit.BeforeClass; import org.junit.Test; /** * Tests for <code>{@link TimestampFormatter#format(java.util.Date)}</code>. * * @author Alex Ruiz */ public class TimestampFormatter_format_Test { public static TimestampFormatter formatter; @BeforeClass public static void setUpOnce() { formatter = new TimestampFormatter(); } @Test public void should_format_date_using_ISO8601_pattern() { String formatted = formatter.format(due().getTime()); assertThat(formatted).isEqualTo("2009-06-13T15:06:10"); } private Calendar due() { // June 13th 2009 08:06:10 AM Calendar calendar = new GregorianCalendar(2009, JUNE, 13, 8, 6, 10); calendar.set(MILLISECOND, 0); calendar.set(AM_PM, AM); return calendar; } }