| 35 | namespace base |
| 36 | { |
| 37 | [[noreturn]] inline void OnTestFailed(SrcPoint const & srcPoint, std::string const & msg) |
| 38 | { |
| 39 | LOG(LINFO, ("FAILED")); |
| 40 | LOG(LINFO, (::DebugPrint(srcPoint.FileName()) + ":" + ::DebugPrint(srcPoint.Line()), msg)); |
| 41 | MYTHROW(TestFailureException, (srcPoint.FileName(), srcPoint.Line(), msg)); |
| 42 | } |
| 43 | } // namespace base |
| 44 | |
| 45 | namespace testing |
nothing calls this directly
no test coverage detected