use of com.axway.ats.log.report.model.ReportFormatter in project ats-framework by Axway.
the class Test_ReportFormatter method passedRun.
@Test
public void passedRun() throws MessagingException {
RunWrapper run = createRun();
ReportFormatter formatter = new ReportFormatter(run);
assertTrue(formatter.getDescription().length() > 0);
assertTrue(formatter.toHtml().length() > 0);
}
Aggregations