doctest

FORK: The fastest feature-rich C++11/14/17/20 single-header testing framework
git clone https://git.neptards.moe/neptards/doctest.git
Log | Files | Refs | README

namespace2.cpp (518B)


      1 #include <doctest/doctest.h>
      2 
      3 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
      4 #include <cstdint>
      5 #include <sstream>
      6 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
      7 
      8 namespace user2 {
      9 struct label
     10 {
     11     label()
     12             : i(0) {}
     13     int         i;
     14     friend bool operator==(const user2::label& lhs, const user2::label& rhs) {
     15         return lhs.i == rhs.i;
     16     }
     17 };
     18 } // namespace user2
     19 
     20 TEST_CASE("namespace 2 friend operator") {
     21     user2::label a;
     22     user2::label b;
     23     REQUIRE(a == b);
     24 }