%@ page import="org.tagunit.*" %>
<%@ page errorPage="error.jsp" %>
<%
String color = "#6699CC";
TestContextContainer testContext = (TestContextContainer)session.getAttribute(Constants.TEST_CONTEXT);
if (testContext != null && testContext.getStatus().equals(TestContext.PASS)) {
color = "#00CC00";
} else if (testContext != null && testContext.getStatus().equals(TestContext.WARNING)) {
color = "#CC6600";
} else if (testContext != null && (testContext.getStatus().equals(TestContext.FAIL) || testContext.getStatus().equals(TestContext.ERROR))) {
color = "#CC0000";
}
%>
<%@ taglib uri="http://www.tagunit.org/tagunit/display" prefix="tagunit" %>
TagUnit - Test Results
 |
Version
|
<%
if (!org.tagunit.TagUnitProperties.getInstance().getIgnoreWarnings()) {
%>
<%
}
%>
|