Package fitnesse.fixtures

Source Code of fitnesse.fixtures.ClockFixture

package fitnesse.fixtures;

import java.text.ParseException;

import fitnesse.util.DateAlteringClock;
import fitnesse.util.DateTimeUtil;

public class ClockFixture {
  public void freezeClockAt(String dateTime) throws ParseException {
    new DateAlteringClock(DateTimeUtil.getDateFromString(dateTime)).freeze();
  }
 
}
TOP

Related Classes of fitnesse.fixtures.ClockFixture

TOP
Copyright © 2018 www.massapi.com. 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.