<% if css %><% end %>

<%= "#{project_name} C0 Coverage Information - RCov" %>

<%= rcov_page_title %>

<% if output_threshold != 101 %>

Threshold: <%= output_threshold %>%

<% end %>
Name Total Lines Lines of Code Total Coverage Code Coverage
<%= fileinfo.name %> <%= fileinfo.num_lines %> <%= fileinfo.num_code_lines %> <%= code_coverage_html(fileinfo.total_coverage_for_report) %> <%= code_coverage_html(fileinfo.code_coverage_for_report) %>

Key

Code reported as executed by Ruby looks like this...and this: this line is also marked as covered.Lines considered as run by rcov, but not reported by Ruby, look like this,and this: these lines were inferred by rcov (using simple heuristics).Finally, here's a line marked as not executed.

Coverage Details

<% fileinfo.num_lines.times do |i| %> <% line = fileinfo.lines[i].chomp %> <% count = fileinfo.counts[i] %> <% end %>
<%= i.next %> <%= CGI::escapeHTML(line) %>

Generated on <%= generated_on %> with rcov <%= rcov::VERSION %>