}
}
public void testGetReportStyle() {
MoDi modi = new MoDi();
ReportStyle expected = MoDi.ReportStyle.CONSOLE;
try {
ReportStyle actual = modi.getReportStyle("CONSOLE");
assertSame(expected, actual);
} catch (MoDiException e) {
fail(e.getMessage());
}