Package org.jtester.core.testng.UserTestReporter

Examples of org.jtester.core.testng.UserTestReporter.Status


      buff.append("<td style='text-align:left;'>");
      buff.append(method.getMethodName());
      buff.append("<br/>");
      buff.append(method.getClazzName());
      buff.append("</td>");
      Status status = method.getStatus();
      buff.append(String.format("<td class='%s'>%s</td>", status.css(), status.name()));
      buff.append(String.format("<td class='%s'>%d ms</td>", method.getSpeedCss(), method.getDuration()));
      buff.append("<td style='text-align:left;'>").append(method.getGroups()).append("</td>");
      buff.append("</tr>\n");
    }
View Full Code Here

TOP

Related Classes of org.jtester.core.testng.UserTestReporter.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.