<%@ 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

Test results

Hide passes | Hide warnings | Show all
Ignore Warnings - Yes | No


Passes
<% if (!org.tagunit.TagUnitProperties.getInstance().getIgnoreWarnings()) { %>
Warnings
<% } %>
Failures
Errors


 
<% if (result instanceof org.tagunit.TagTestContext) { org.tagunit.TagTestContext ttc = (org.tagunit.TagTestContext)result; out.print(""); out.print(""); } %> <% if (result instanceof org.tagunit.TagTestContext) { out.print(""); } %> Pass Warning Fail Error
Warning :  
Failure :  
Error :  


License