forked from mirror/doctest
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
C++
23 lines
469 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 user3 {
|
|
struct label
|
|
{
|
|
label()
|
|
: i(0) {}
|
|
int i;
|
|
bool operator==(const user3::label& rhs) const { return i == rhs.i; }
|
|
};
|
|
} // namespace user3
|
|
|
|
TEST_CASE("namespace 3 member operator") {
|
|
user3::label a;
|
|
user3::label b;
|
|
REQUIRE(a == b);
|
|
}
|