| 133 | } |
| 134 | |
| 135 | void check(bool ok, const char* file, int line) |
| 136 | { |
| 137 | if (ok) return; |
| 138 | |
| 139 | ++::boost::detail::test_errors(); |
| 140 | |
| 141 | std::cout << file << '(' << line << "): test failed\n"; |
| 142 | } |
| 143 | |
| 144 | string s("string"); |
| 145 | wstring ws(L"wstring"); |
nothing calls this directly
no outgoing calls
no test coverage detected