Package fitnesse.slim.converters

Examples of fitnesse.slim.converters.DateConverter


  }

  @Test
  public void passOneDate() throws Exception {
    caller.call("testSlim", "oneDate", "5-May-2009");
    assertEquals((Date) new DateConverter().fromString("5-May-2009"), testSlim.getDateArg());
  }
View Full Code Here


import org.junit.Test;

public class ConverterTest {
  @Test
  public void convertDate() throws Exception {
    assertConverts(new DateConverter(), "05-May-2009");
  }
View Full Code Here

    assertConverts(new DateConverter(), "05-May-2009");
  }

  @Test
  public void convertDateWithoutLeadingZero() throws Exception {
    assertConverts("05-May-2009", new DateConverter(), "5-May-2009");
  }
View Full Code Here

TOP

Related Classes of fitnesse.slim.converters.DateConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.