olm/lib/doctest/examples/all_features/namespace5.cpp
Hubert Chathi 8475061136 switch to doctest for unit testing
thanks to Nico Werner, who did most of the porting work
2021-12-22 13:45:33 -05:00

39 lines
768 B
C++

#include <doctest/doctest.h>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
#include <cstdint>
#include <sstream>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
namespace user6 {
struct label
{
label()
: i(0) {}
int i;
bool operator==(const user6::label& rhs) const { return i == rhs.i; }
};
} // namespace user6
namespace user7 {
struct label
{
label()
: i(0) {}
int i;
friend bool operator==(const user7::label& lhs, const user7::label& rhs) {
return lhs.i == rhs.i;
}
};
} // namespace user7
TEST_CASE("namespace 5 member vs friend") {
user6::label a6;
user6::label b6;
user7::label a7;
user7::label b7;
REQUIRE(a6 == b6);
REQUIRE(a7 == b7);
}