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 authored and kris-jusiak committed Feb 3, 2025
1 parent 644e29d commit 7151a32
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 @@ -1787,7 +1787,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 7151a32

Please sign in to comment.