Files
rest_rpc/tests/main.cpp
T

9 lines
295 B
C++
Raw Normal View History

2024-01-21 16:36:47 +08:00
#define DOCTEST_CONFIG_IMPLEMENT
#include "doctest/doctest.h"
// doctest comments
// 'function' : must be 'attribute' - see issue #182
DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4007)
int main(int argc, char** argv) { return doctest::Context(argc, argv).run(); }
DOCTEST_MSVC_SUPPRESS_WARNING_POP