2020-04-13 20:23:11 +00:00
|
|
|
#include "../include/toml++/toml_preprocessor.h"
|
|
|
|
|
|
|
|
TOML_PUSH_WARNINGS
|
|
|
|
TOML_DISABLE_ALL_WARNINGS
|
2020-04-02 21:39:21 +00:00
|
|
|
#define CATCH_CONFIG_RUNNER
|
|
|
|
#include "catch2.h"
|
2020-04-06 12:57:49 +00:00
|
|
|
#include <clocale>
|
2020-04-13 20:23:11 +00:00
|
|
|
TOML_POP_WARNINGS
|
2020-04-02 21:39:21 +00:00
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2020-04-06 12:57:49 +00:00
|
|
|
SetConsoleOutputCP(65001);
|
2020-04-02 21:39:21 +00:00
|
|
|
#endif
|
2020-04-06 12:57:49 +00:00
|
|
|
std::setlocale(LC_ALL, "");
|
|
|
|
std::locale::global(std::locale(""));
|
2020-04-02 21:39:21 +00:00
|
|
|
return Catch::Session().run(argc, argv);
|
|
|
|
}
|