Problem
The following example is modified from README.md.
#include <boost/ut.hpp>
int main() {
using namespace boost::ut;
expect(fatal(1 == 2_i));
expect(1_i == 2);
}
The filename and the row number do not show correctly.
Expected Behavior
UT starts =====================================================================
FAILED in: ...\example.cpp:6 - test condition: [1 == 2]
===============================================================================
Suite global
tests: 0 | 0 failed
asserts: 1 | 0 passed | 1 failed
Actual Behavior
UT starts =====================================================================
FAILED in: :0 - test condition: [1 == 2]
===============================================================================
Suite global
tests: 0 | 0 failed
asserts: 1 | 0 passed | 1 failed
Problem
The following example is modified from README.md.
The filename and the row number do not show correctly.
Expected Behavior
Actual Behavior