Skip to content

Commit

Permalink
Include test type in test output
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasleibner committed Jan 31, 2025
1 parent b4cb115 commit 431ded5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/ut.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ class reporter_junit {
if (report_type_ == CONSOLE) {
ss_out_ << "\n";
ss_out_ << std::string(2 * active_test_.size() - 2, ' ');
ss_out_ << "Running test \"" << test_event.name << "\"... ";
ss_out_ << "Running " << test_event.type << " \"" << test_event.name << "\"... ";
}
}

Expand Down

0 comments on commit 431ded5

Please sign in to comment.