@Before
  public void setUp() throws Exception {
    // HardcodedData.setPerformanceFileLocation("weekdays/");
    HardcodedData.prepend();
    String csvFilename = HardcodedData.linkList + "/Link_list.csv";

    tripsTimeProcessor = new TripsTimeProcessor(csvFilename);
  }
Ejemplo n.º 2
0
  public static void main(String[] args) {
    ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
    ApplicationContextHolder holder = ctx.getBean(ApplicationContextHolder.class);
    HardcodedData.prepend();

    DwellingControl dwellingControl = new DwellingControl();

    dwellingControl.getLimit(HardcodedData.START_YEAR, true);
  }