Lines Matching refs:counts
91 result_output[:counts][:total] = tests
92 result_output[:counts][:failed] = failures
93 result_output[:counts][:ignored] = ignored
94 result_output[:counts][:passed] = (result_output[:counts][:total] - result_output[:counts][:failed] - result_output[:counts][:ignored])
110 write_suite_header(result_output[:counts], f)
170 counts: { total: 0, passed: 0, failed: 0, ignored: 0 },
183 def write_suite_header(counts, stream)
184 stream.puts "\t<testsuite errors=\"0\" skipped=\"#{counts[:ignored]}\" failures=\"#{counts[:failed]}\" tests=\"#{counts[:total]}\" name=\"unity\">"