We connected gmock framework to XCTest and it represents error with line breaks and sometimes with call stack, for example:
AngleTest.cpp:25: error: -[Angle::angle_values_are_consistent] :
Expected: angle_deg + 100
Which is: -300
To be equal to: deg->get_degrees()
Which is: -400
We see such representation in xcode's log, in terminal and even in XCTestHTMLReport's log tab.
But by some reason not on main page. Main page doesn't represent line breaks and we see it like this:
Assertion Failure: AngleTest.cpp:25: Expected: angle_deg + 100 Which is: -300 To be equal to: deg->get_degrees() Which is: -400 (0s)
Especially it's sad when there is a call stack.
Is there any way to represent the result on main page with line breaks as well?
We connected gmock framework to XCTest and it represents error with line breaks and sometimes with call stack, for example:
We see such representation in xcode's log, in terminal and even in XCTestHTMLReport's log tab.
But by some reason not on main page. Main page doesn't represent line breaks and we see it like this:
Especially it's sad when there is a call stack.
Is there any way to represent the result on main page with line breaks as well?