mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-30 00:50:48 +08:00
9 lines
295 B
C++
9 lines
295 B
C++
|
|
#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
|