| 124 | } |
| 125 | |
| 126 | void check(bool ok_, const char* file, int line) |
| 127 | { |
| 128 | if (ok_) |
| 129 | return; |
| 130 | |
| 131 | ++::boost::detail::test_errors(); |
| 132 | |
| 133 | std::cout << file << '(' << line << "): test failed\n"; |
| 134 | } |
| 135 | |
| 136 | string s("string"); |
| 137 | wstring ws(L"wstring"); |
nothing calls this directly
no outgoing calls
no test coverage detected