MCPcopy Create free account
hub / github.com/boostorg/filesystem / check_equal

Function check_equal

test/path_unit_test.cpp:112–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111template< class T1, class T2 >
112void check_equal(const T1& value, const T2& expected, const char* file, int line)
113{
114 if (value == expected)
115 return;
116
117 ++::boost::detail::test_errors();
118
119 std::cout << file;
120
121 std::wcout << L'(' << line << L"): value: \"" << value
122 << L"\" != expected: \"" << expected
123 << L"\"\n";
124}
125
126void check(bool ok_, const char* file, int line)
127{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected