Welcome to mirror list, hosted at ThFree Co, Russian Federation.

namespace1.cpp « all_features « examples - github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4014ab5451619278f56e304dcd59add0f4d59237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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 user1 {
struct label
{
    label()
            : i(0) {}
    int i;
};
} // namespace user1

DOCTEST_GCC_SUPPRESS_WARNING("-Wmissing-declarations")
DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-prototypes")

bool operator==(const user1::label& lhs, const user1::label& rhs) { return lhs.i == rhs.i; }


TEST_CASE("namespace 1 global operator") {
    user1::label a;
    user1::label b;
    CHECK(a == b);
}