jsystem.framework.report
Interface Reporter

All Known Implementing Classes:
ListenerstManager

public interface Reporter

The Reporter is use to get the reports from the tests or APIs and send them to the TestReporter(s).


Method Summary
 void report(String title)
          Post a test report
 void report(String title, boolean status)
          Post a test report
 void report(String title, String message, boolean status)
          Post a test report
 void report(String title, String message, boolean status, boolean bold)
          Post a test report
 void report(String title, Throwable t)
          Post a test failer report.
 void step(String stepDiscription)
          Post a step report
 

Method Detail

report

public void report(String title,
                   String message,
                   boolean status,
                   boolean bold)
Post a test report

Parameters:
title - Report title.
message - Report message.
status - report status.
bold - bold report.

report

public void report(String title,
                   String message,
                   boolean status)
Post a test report

Parameters:
title - Report title.
message - Report message.
status - report status.

report

public void report(String title,
                   boolean status)
Post a test report

Parameters:
title - Report title.
status - report status.

report

public void report(String title)
Post a test report

Parameters:
title - Report title.

step

public void step(String stepDiscription)
Post a step report

Parameters:
stepDiscription - Step discription.

report

public void report(String title,
                   Throwable t)
Post a test failer report.

Parameters:
title - Test title.
t - The exception that cause the report.