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

double_stringification.cpp « all_features « examples - github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a1ebb53346eb65b4377f5b91687066a20a6b463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define DOCTEST_CONFIG_DOUBLE_STRINGIFY
#include <doctest_fwd.h>

DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
#include <string>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END

namespace App {
    struct Foo { };
    static std::string toString(Foo*) { return "Foo"; }
}

TEST_CASE("toString std::string ret type") {
    App::Foo foo;
    CHECK(&foo != nullptr);
    CHECK_NE(&foo, nullptr);
    CHECK(&foo);
}