private final static String INTERACTIVE_TABLE_LAYOUT_PROPERTY = "interactive_test_case_report_table_layout";
private final static String EXECUTION_TABLE_LAYOUT_PROPERTY = "execution_test_case_report_table_layout";
private String runName;
private void initIcons() {
ResourceManager resourceManager = ResourceManager.getInstance();
passedImg = resourceManager.getImageIcon("icons/passed");
passedImg.setDescription("Passed");
failedImg = resourceManager.getImageIcon("icons/failed");
failedImg.setDescription(("Failed"));
runningImg = resourceManager.getImageIcon("icons/running");
runningImg.setDescription(("Running"));
naImg = resourceManager.getImageIcon("icons/na");
naImg.setDescription(("Test in error"));
/*snapShotImg = resourceManager.getImageIcon("icons/snapshot");
snapShotImg.setDescription(("Failed"));*/
}