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

Function check_equal

test/path_unit_test.cpp:121–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119
120 template< class T1, class T2 >
121 void check_equal(const T1& value,
122 const T2& expected, const char* file, int line)
123 {
124 if (value == expected) return;
125
126 ++::boost::detail::test_errors();
127
128 std::cout << file;
129
130 std::wcout << L'(' << line << L"): value: \"" << value
131 << L"\" != expected: \"" << expected
132 << L"\"\n" ;
133 }
134
135 void check(bool ok, const char* file, int line)
136 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected