Decode func = new Decode();
String r = func.exec(t1);
assertTrue(r.equals("Engineering"));
r = func.exec(t2);
assertTrue(r.equals("Other"));
r = func.exec(t3);
assertTrue(r==null);
try {
r = func.exec(t4);
fail("Exception not triggered");
} catch (IOException e) {