* Test of configure method, of class Configurator.
*/
public void testConfigure() {
System.out.println("[TEST] configure");
String confPath = "/home/nmutiara/NetBeansProjects/ntutimetabletoics/examples/conf.xml";
NTUTimetable result = Configurator.configure(confPath);
int expectedSize = 7;
assertNotNull(result);
ArrayList<SemesterTimetable> resultSTs = result.getSemesterTimetables();
assertEquals(expectedSize, resultSTs.size());
SemesterTimetable resultST = null;
for (int i = 0; i < expectedSize; ++i) {
resultST = resultSTs.get(i);
//ObjectPrinter.print(resultST);