We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5204c1b commit 1fccb5bCopy full SHA for 1fccb5b
auto/parse_output.rb
@@ -131,10 +131,11 @@ def prepare_fixture_line(line)
131
def test_passed_unity_fixture(array)
132
class_name = array[0]
133
test_name = array[1]
134
+ test_time = get_test_time(array[array.length - 1])
135
test_suite_verify(class_name)
- printf "%-40s PASS\n", test_name
136
+ printf "%-40s PASS %10d ms\n", test_name, test_time
137
- push_xml_output_passed(test_name) if @xml_out
138
+ push_xml_output_passed(test_name, test_time) if @xml_out
139
end
140
141
# Test was flagged as having failed so format the output.
0 commit comments