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

<%= shortened_filename(file) %>

Name Total Lines Lines of Code Total Coverage Code Coverage
<%= shortened_filename(file) %> <%= file.lines.count %> <%= file.covered_lines.count + file.missed_lines.count %> <%= code_coverage_html(total_coverage_for_report(file)) %> <%= code_coverage_html(file.covered_percent) %>

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

<%- file.lines.each do |line| -%> <%- end -%>
<%= line.number.next %> <%= CGI::escapeHTML(line.src.chomp) %>

Generated on <%= generated_on %> with SimpleCov-RCov <%= SimpleCov::Formatter::RcovFormatter::VERSION %>