2020-06-26 18:01:27 +00:00
|
|
|
// This file is a part of toml++ and is subject to the the terms of the MIT license.
|
|
|
|
// Copyright (c) 2019-2020 Mark Gillard <mark.gillard@outlook.com.au>
|
|
|
|
// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
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-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);
|
|
|
|
}
|