01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2007 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU General Public License as published by the
09: * Free Software Foundation; either version 2 of the License, or (at your option)
10: * any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15: * for more details.
16: *
17: * You should have received a copy of the GNU General Public License along with
18: * this program; if not, write to the Free Software Foundation, Inc.,
19: * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: *
21: *
22: * $Id: HolidayScheduleTest.java 6898 2007-04-18 15:35:56Z mpreston $
23: */
24: package com.bostechcorp.cbesb.runtime.scheduler;
25:
26: import java.io.File;
27: import javax.xml.namespace.QName;
28:
29: import junit.framework.TestCase;
30:
31: public class HolidayScheduleTest extends TestCase {
32:
33: /**
34: * @param name
35: */
36: public HolidayScheduleTest(String name) {
37: super (name);
38: }
39:
40: /* (non-Javadoc)
41: * @see junit.framework.TestCase#setUp()
42: */
43: protected void setUp() throws Exception {
44: super .setUp();
45: }
46:
47: /* (non-Javadoc)
48: * @see junit.framework.TestCase#tearDown()
49: */
50: protected void tearDown() throws Exception {
51: super .tearDown();
52: }
53:
54: public void testIO() {
55: try {
56: File holidayFile1 = new File(
57: "target/test-data/MyHolidays1.hol");
58: File holidayFile2 = new File(
59: "target/test-data/MyHolidays2.hol");
60:
61: HolidaySchedule holSched1 = new HolidaySchedule();
62: holSched1.addHoliday(new Holiday("2007-05-28",
63: "Memorial Day"));
64: holSched1.addHoliday(new Holiday("2007-07-04",
65: "Independence Day"));
66: holSched1
67: .addHoliday(new Holiday("2007-09-03", "Labor Day"));
68: holSched1.addHoliday(new Holiday("2007-10-08",
69: "Columbus Day"));
70: holSched1.addHoliday(new Holiday("2007-11-11",
71: "Veterans Day"));
72: holSched1.addHoliday(new Holiday("2007-11-22",
73: "Thanksgiving"));
74: holSched1
75: .addHoliday(new Holiday("2007-12-25", "Christmas"));
76: holSched1.save(holidayFile1);
77:
78: HolidaySchedule holSched2 = new HolidaySchedule();
79: holSched2.load(holidayFile1);
80: holSched2.save(holidayFile2);
81:
82: } catch (Exception e) {
83: e.printStackTrace();
84: fail();
85: }
86: }
87: }
|